diff options
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_irq.c')
-rw-r--r-- | drivers/gpu/drm/omapdrm/omap_irq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_irq.c b/drivers/gpu/drm/omapdrm/omap_irq.c index 53ba424823b2..976dc0e44482 100644 --- a/drivers/gpu/drm/omapdrm/omap_irq.c +++ b/drivers/gpu/drm/omapdrm/omap_irq.c | |||
@@ -20,7 +20,7 @@ | |||
20 | struct omap_irq_wait { | 20 | struct omap_irq_wait { |
21 | struct list_head node; | 21 | struct list_head node; |
22 | wait_queue_head_t wq; | 22 | wait_queue_head_t wq; |
23 | uint32_t irqmask; | 23 | u32 irqmask; |
24 | int count; | 24 | int count; |
25 | }; | 25 | }; |
26 | 26 | ||
@@ -29,7 +29,7 @@ static void omap_irq_update(struct drm_device *dev) | |||
29 | { | 29 | { |
30 | struct omap_drm_private *priv = dev->dev_private; | 30 | struct omap_drm_private *priv = dev->dev_private; |
31 | struct omap_irq_wait *wait; | 31 | struct omap_irq_wait *wait; |
32 | uint32_t irqmask = priv->irq_mask; | 32 | u32 irqmask = priv->irq_mask; |
33 | 33 | ||
34 | assert_spin_locked(&priv->wait_lock); | 34 | assert_spin_locked(&priv->wait_lock); |
35 | 35 | ||
@@ -48,7 +48,7 @@ static void omap_irq_wait_handler(struct omap_irq_wait *wait) | |||
48 | } | 48 | } |
49 | 49 | ||
50 | struct omap_irq_wait * omap_irq_wait_init(struct drm_device *dev, | 50 | struct omap_irq_wait * omap_irq_wait_init(struct drm_device *dev, |
51 | uint32_t irqmask, int count) | 51 | u32 irqmask, int count) |
52 | { | 52 | { |
53 | struct omap_drm_private *priv = dev->dev_private; | 53 | struct omap_drm_private *priv = dev->dev_private; |
54 | struct omap_irq_wait *wait = kzalloc(sizeof(*wait), GFP_KERNEL); | 54 | struct omap_irq_wait *wait = kzalloc(sizeof(*wait), GFP_KERNEL); |