Skip to content

Commit

Permalink
[PATCH] irq-flags: drivers/drm: Use the new IRQF_ constants
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Dave Airlie <airlied@linux.ie>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Thomas Gleixner authored and Linus Torvalds committed Jul 2, 2006
1 parent 0f2ed4c commit 935f6e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/drm/drm_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 935f6e3

Please sign in to comment.