drm: omapdrm: Use kernel integer types
The standard kernel integer types are [us]{8,16,32}. Use them instead of
the u?int{8,16,32}_t types.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
committed by
Tomi Valkeinen
parent
f073d78eeb
commit
dfe9cfccb2
@@ -46,7 +46,7 @@
|
||||
struct omap_drm_usergart;
|
||||
|
||||
struct omap_drm_private {
|
||||
uint32_t omaprev;
|
||||
u32 omaprev;
|
||||
|
||||
const struct dispc_ops *dispc_ops;
|
||||
|
||||
@@ -81,7 +81,7 @@ struct omap_drm_private {
|
||||
/* irq handling: */
|
||||
spinlock_t wait_lock; /* protects the wait_list */
|
||||
struct list_head wait_list; /* list of omap_irq_wait */
|
||||
uint32_t irq_mask; /* enabled irqs in addition to wait_list */
|
||||
u32 irq_mask; /* enabled irqs in addition to wait_list */
|
||||
|
||||
/* memory bandwidth limit if it is needed on the platform */
|
||||
unsigned int max_bandwidth;
|
||||
|
||||
Reference in New Issue
Block a user