Commit d2ab8ad9 authored by Thierry Reding's avatar Thierry Reding Committed by Daniel Vetter

drm/imx: Make pipe number unsigned

There's no reason whatsoever why this should ever be negative. The same
goes for the number of pipes added to the DRM device.

Cc: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1450178476-26284-4-git-send-email-boris.brezillon@free-electrons.comSigned-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 20143598
...@@ -39,13 +39,13 @@ struct imx_drm_component { ...@@ -39,13 +39,13 @@ struct imx_drm_component {
struct imx_drm_device { struct imx_drm_device {
struct drm_device *drm; struct drm_device *drm;
struct imx_drm_crtc *crtc[MAX_CRTC]; struct imx_drm_crtc *crtc[MAX_CRTC];
int pipes; unsigned int pipes;
struct drm_fbdev_cma *fbhelper; struct drm_fbdev_cma *fbhelper;
}; };
struct imx_drm_crtc { struct imx_drm_crtc {
struct drm_crtc *crtc; struct drm_crtc *crtc;
int pipe; unsigned int pipe;
struct imx_drm_crtc_helper_funcs imx_drm_helper_funcs; struct imx_drm_crtc_helper_funcs imx_drm_helper_funcs;
}; };
...@@ -54,7 +54,7 @@ static int legacyfb_depth = 16; ...@@ -54,7 +54,7 @@ static int legacyfb_depth = 16;
module_param(legacyfb_depth, int, 0444); module_param(legacyfb_depth, int, 0444);
#endif #endif
int imx_drm_crtc_id(struct imx_drm_crtc *crtc) unsigned int imx_drm_crtc_id(struct imx_drm_crtc *crtc)
{ {
return crtc->pipe; return crtc->pipe;
} }
......
...@@ -13,7 +13,7 @@ struct drm_plane; ...@@ -13,7 +13,7 @@ struct drm_plane;
struct imx_drm_crtc; struct imx_drm_crtc;
struct platform_device; struct platform_device;
int imx_drm_crtc_id(struct imx_drm_crtc *crtc); unsigned int imx_drm_crtc_id(struct imx_drm_crtc *crtc);
struct imx_drm_crtc_helper_funcs { struct imx_drm_crtc_helper_funcs {
int (*enable_vblank)(struct drm_crtc *crtc); int (*enable_vblank)(struct drm_crtc *crtc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment