Blackfin: use proper wrapper functions for modifying irq status

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Thomas Gleixner 2011-02-06 18:23:38 +00:00 committed by Mike Frysinger
parent e9502850b9
commit bc2f6bd802
4 changed files with 4 additions and 4 deletions

View File

@ -775,7 +775,7 @@ static int __init cm_bf537e_init(void)
#endif #endif
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN; irq_set_status_flags(PATA_INT, IRQ_NOAUTOEN);
#endif #endif
return 0; return 0;
} }

View File

@ -740,7 +740,7 @@ static int __init cm_bf537u_init(void)
#endif #endif
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN; irq_set_status_flags(PATA_INT, IRQ_NOAUTOEN);
#endif #endif
return 0; return 0;
} }

View File

@ -742,7 +742,7 @@ static int __init tcm_bf537_init(void)
#endif #endif
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN; irq_set_status_flags(PATA_INT, IRQ_NOAUTOEN);
#endif #endif
return 0; return 0;
} }

View File

@ -541,7 +541,7 @@ static int __init cm_bf561_init(void)
#endif #endif
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN; irq_set_status_flags(PATA_INT, IRQ_NOAUTOEN);
#endif #endif
return 0; return 0;
} }