irqchip: s3c24xx: fix irqlist of second s3c2416 controller
authorHeiko Stuebner <heiko@sntech.de>
Thu, 4 Apr 2013 05:53:41 +0000 (14:53 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Thu, 4 Apr 2013 05:56:02 +0000 (14:56 +0900)
The list in used was from the s3c2450, a close cousin of the s3c2416.
As it's not possible to distinguish between the s3c2416 and s3c2450
the additional interrupts of the s3c2450 will only be available thru
devicetree later.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
drivers/irqchip/irq-s3c24xx.c

index 84afbc16fcc304b0b0268ac31e6eff0d85d79e09..a565eb8def305911a9f50120513fa30e2166c0c5 100644 (file)
@@ -835,13 +835,12 @@ static struct s3c_irq_data init_s3c2416subint[32] = {
 
 static struct s3c_irq_data init_s3c2416_second[32] = {
        { .type = S3C_IRQTYPE_EDGE }, /* 2D */
-       { .type = S3C_IRQTYPE_EDGE }, /* IIC1 */
+       { .type = S3C_IRQTYPE_NONE }, /* reserved */
        { .type = S3C_IRQTYPE_NONE }, /* reserved */
        { .type = S3C_IRQTYPE_NONE }, /* reserved */
        { .type = S3C_IRQTYPE_EDGE }, /* PCM0 */
-       { .type = S3C_IRQTYPE_EDGE }, /* PCM1 */
+       { .type = S3C_IRQTYPE_NONE }, /* reserved */
        { .type = S3C_IRQTYPE_EDGE }, /* I2S0 */
-       { .type = S3C_IRQTYPE_EDGE }, /* I2S1 */
 };
 
 void __init s3c2416_init_irq(void)
This page took 0.027921 seconds and 5 git commands to generate.