irq.c 1.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/* linux/arch/arm/mach-s3c2410/irq.c
 *
3
 * Copyright (c) 2006 Simtec Electronics
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *	Ben Dooks <ben@simtec.co.uk>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
*/

#include <linux/init.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/sysdev.h>

28 29
#include <plat/cpu.h>
#include <plat/pm.h>
L
Linus Torvalds 已提交
30

31
static int s3c2410_irq_add(struct sys_device *sysdev)
L
Linus Torvalds 已提交
32 33 34 35
{
	return 0;
}

36 37 38 39
static struct sysdev_driver s3c2410_irq_driver = {
	.add		= s3c2410_irq_add,
	.suspend	= s3c24xx_irq_suspend,
	.resume		= s3c24xx_irq_resume,
40 41
};

B
Ben Dooks 已提交
42
static int __init s3c2410_irq_init(void)
43
{
44
	return sysdev_driver_register(&s3c2410_sysclass, &s3c2410_irq_driver);
45 46
}

47
arch_initcall(s3c2410_irq_init);
B
Ben Dooks 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60

static struct sysdev_driver s3c2410a_irq_driver = {
	.add		= s3c2410_irq_add,
	.suspend	= s3c24xx_irq_suspend,
	.resume		= s3c24xx_irq_resume,
};

static int __init s3c2410a_irq_init(void)
{
	return sysdev_driver_register(&s3c2410a_sysclass, &s3c2410a_irq_driver);
}

arch_initcall(s3c2410a_irq_init);