diff options
| author | Thomas Gleixner <[email protected]> | 2006-07-02 02:29:34 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2006-07-02 20:58:49 +0000 |
| commit | 935f6e3abc76e868de1acbd76cf9b760e66cf237 (patch) | |
| tree | ccec698e56a4d5cd3643382d489f1dc91d412a62 | |
| parent | [PATCH] irq-flags: drivers/char: Use the new IRQF_ constants (diff) | |
| download | kernel-935f6e3abc76e868de1acbd76cf9b760e66cf237.tar.gz kernel-935f6e3abc76e868de1acbd76cf9b760e66cf237.zip | |
[PATCH] irq-flags: drivers/drm: Use the new IRQF_ constants
Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Dave Airlie <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
| -rw-r--r-- | drivers/char/drm/drm_irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/drm/drm_irq.c b/drivers/char/drm/drm_irq.c index 611a1173091d..ebdb7182c4fd 100644 --- a/drivers/char/drm/drm_irq.c +++ b/drivers/char/drm/drm_irq.c @@ -130,7 +130,7 @@ static int drm_irq_install(drm_device_t * dev) /* Install handler */ if (drm_core_check_feature(dev, DRIVER_IRQ_SHARED)) - sh_flags = SA_SHIRQ; + sh_flags = IRQF_SHARED; ret = request_irq(dev->irq, dev->driver->irq_handler, sh_flags, dev->devname, dev); |
