Skip to content

Commit 1cdb005

Browse files
xp4ns3danvet
authored andcommitted
gpu: drm: Replace bare "unsigned" with "unsigned int"
Replaced the type "unsigned" with "unsigned int" because it is preferred. Issue detected by checkpatch.pl. Signed-off-by: Fabio M. De Francesco <[email protected]> Signed-off-by: Daniel Vetter <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent b057f37 commit 1cdb005

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/drm_atomic.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1302,8 +1302,8 @@ int drm_atomic_check_only(struct drm_atomic_state *state)
13021302
struct drm_crtc_state *new_crtc_state;
13031303
struct drm_connector *conn;
13041304
struct drm_connector_state *conn_state;
1305-
unsigned requested_crtc = 0;
1306-
unsigned affected_crtc = 0;
1305+
unsigned int requested_crtc = 0;
1306+
unsigned int affected_crtc = 0;
13071307
int i, ret = 0;
13081308

13091309
DRM_DEBUG_ATOMIC("checking %p\n", state);

0 commit comments

Comments
 (0)