diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-06-06 02:55:52 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2016-12-19 10:25:02 +0100 |
commit | 5d9f5b33399cc57d04ceed05f011d6fe4136675a (patch) | |
tree | 1b0dcb54890be36dc7d0c981551ccca98a740d03 /drivers/gpu/drm/omapdrm/omap_drv.h | |
parent | drm: omapdrm: Don't expose the omap_irq_(un)register() functions (diff) | |
download | linux-5d9f5b33399cc57d04ceed05f011d6fe4136675a.tar.xz linux-5d9f5b33399cc57d04ceed05f011d6fe4136675a.zip |
drm: omapdrm: Remove unused parameter from omap_drm_irq handler
The only omap_drm_irq handler doesn't use the irqstatus parameter passed
to the function. Remove it.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_drv.h')
-rw-r--r-- | drivers/gpu/drm/omapdrm/omap_drv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_drv.h b/drivers/gpu/drm/omapdrm/omap_drv.h index 56159992ba18..7868feb604fc 100644 --- a/drivers/gpu/drm/omapdrm/omap_drv.h +++ b/drivers/gpu/drm/omapdrm/omap_drv.h @@ -58,7 +58,7 @@ struct omap_drm_irq { struct list_head node; uint32_t irqmask; bool registered; - void (*irq)(struct omap_drm_irq *irq, uint32_t irqstatus); + void (*irq)(struct omap_drm_irq *irq); }; /* For KMS code that needs to wait for a certain # of IRQs: |