diff options
author | Jens Rottmann <JRottmann@LiPPERTEmbedded.de> | 2012-03-06 03:07:54 +0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-03-06 17:17:45 +0400 |
commit | c0a239233331f7d6d2256dde80cb19fd6f9b3542 (patch) | |
tree | 8643752d6772c86188b67c24531d553ecddfef67 /drivers/clocksource | |
parent | fc579da75f0151eec4c465b0f79b4ef8e3dfb8c2 (diff) | |
download | linux-c0a239233331f7d6d2256dde80cb19fd6f9b3542.tar.xz |
cs5535-clockevt: Allow the MFGPT IRQ to be shared
Shared timer IRQs are not a good solution, however the Geode platform has
no APIC, IRQs are a scarce resource and there is no technical reason to
forbid it rightaway. Increased latencies and overhead due to sharing are
still better than a driver refusing to load.
Signed-off-by: Jens Rottmann <JRottmann@LiPPERTEmbedded.de>
Acked-by: Andres Salomon <dilinger@queued.net>
Cc: John Stultz <john.stultz@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/clocksource')
-rw-r--r-- | drivers/clocksource/cs5535-clockevt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/cs5535-clockevt.c b/drivers/clocksource/cs5535-clockevt.c index 315a285136fa..540795cd0760 100644 --- a/drivers/clocksource/cs5535-clockevt.c +++ b/drivers/clocksource/cs5535-clockevt.c @@ -132,7 +132,7 @@ static irqreturn_t mfgpt_tick(int irq, void *dev_id) static struct irqaction mfgptirq = { .handler = mfgpt_tick, - .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER, + .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER | IRQF_SHARED, .name = DRV_NAME, }; |