Skip to content

Commit

Permalink
drm: i915: fix up irqflags arg
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Airlie <airlied@linux.ie>
  • Loading branch information
=?utf-8?q?Michel_D=C3=A4nzer?= authored and airlied committed Dec 7, 2006
1 parent 21fa60e commit a0b136b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/char/drm/i915_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
static void i915_vblank_tasklet(drm_device_t *dev)
{
drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
unsigned int irqflags;
unsigned long irqflags;
struct list_head *list, *tmp;

DRM_DEBUG("\n");
Expand Down Expand Up @@ -379,7 +379,8 @@ int i915_vblank_swap(DRM_IOCTL_ARGS)
drm_i915_private_t *dev_priv = dev->dev_private;
drm_i915_vblank_swap_t swap;
drm_i915_vbl_swap_t *vbl_swap;
unsigned int pipe, seqtype, irqflags, curseq;
unsigned int pipe, seqtype, curseq;
unsigned long irqflags;
struct list_head *list;

if (!dev_priv) {
Expand Down

0 comments on commit a0b136b

Please sign in to comment.