diff options
Diffstat (limited to 'drivers/video/tegra/host/nvhost_intr.c')
-rw-r--r-- | drivers/video/tegra/host/nvhost_intr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/tegra/host/nvhost_intr.c b/drivers/video/tegra/host/nvhost_intr.c index 719a7fa31c75..b63e38265fd9 100644 --- a/drivers/video/tegra/host/nvhost_intr.c +++ b/drivers/video/tegra/host/nvhost_intr.c @@ -281,10 +281,10 @@ irqreturn_t nvhost_syncpt_thresh_fn(void *dev_id) irqreturn_t nvhost_intr_irq_fn(int irq, void *dev_id) { struct nvhost_intr *intr = dev_id; - unsigned long intstat = intr->intstatus; + u32 intstat = intr->intstatus; int i; - for_each_set_bit(i, &intstat, BITS_PER_LONG) { + for_each_set_bit(i, &intstat, 32) { if (intr->generic_isr_thread[i]) intr->generic_isr_thread[i](); } |