diff options
author | Jens Rottmann <JRottmann@LiPPERTEmbedded.de> | 2012-03-05 18:07:54 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2012-03-06 08:17:45 -0500 |
commit | c0a239233331f7d6d2256dde80cb19fd6f9b3542 (patch) | |
tree | 8643752d6772c86188b67c24531d553ecddfef67 /drivers/clocksource/cs5535-clockevt.c | |
parent | fc579da75f0151eec4c465b0f79b4ef8e3dfb8c2 (diff) |
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/cs5535-clockevt.c')
-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) | |||
132 | 132 | ||
133 | static struct irqaction mfgptirq = { | 133 | static struct irqaction mfgptirq = { |
134 | .handler = mfgpt_tick, | 134 | .handler = mfgpt_tick, |
135 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER, | 135 | .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_TIMER | IRQF_SHARED, |
136 | .name = DRV_NAME, | 136 | .name = DRV_NAME, |
137 | }; | 137 | }; |
138 | 138 | ||