staging: vboxvideo: Rename uint32_t type to u32
Issue found by checkpatch. CHECK: Prefer kernel type 'u32' over 'uint32_t' +static const uint32_t vbox_cursor_plane_formats[] = { CHECK: Prefer kernel type 'u32' over 'uint32_t' +static const uint32_t vbox_primary_plane_formats[] = { CHECK: Prefer kernel type 'u32' over 'uint32_t' + const uint32_t *formats; Signed-off-by: Ricardo Reis Marques Silva <ricardormsilva93@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
b44beecab8
Коммит
16c44c57ec
|
@ -479,7 +479,7 @@ static void vbox_cursor_cleanup_fb(struct drm_plane *plane,
|
||||||
vbox_bo_unpin(bo);
|
vbox_bo_unpin(bo);
|
||||||
}
|
}
|
||||||
|
|
||||||
static const uint32_t vbox_cursor_plane_formats[] = {
|
static const u32 vbox_cursor_plane_formats[] = {
|
||||||
DRM_FORMAT_ARGB8888,
|
DRM_FORMAT_ARGB8888,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -500,7 +500,7 @@ static const struct drm_plane_funcs vbox_cursor_plane_funcs = {
|
||||||
.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
|
.atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const uint32_t vbox_primary_plane_formats[] = {
|
static const u32 vbox_primary_plane_formats[] = {
|
||||||
DRM_FORMAT_XRGB8888,
|
DRM_FORMAT_XRGB8888,
|
||||||
DRM_FORMAT_ARGB8888,
|
DRM_FORMAT_ARGB8888,
|
||||||
};
|
};
|
||||||
|
@ -529,7 +529,7 @@ static struct drm_plane *vbox_create_plane(struct vbox_private *vbox,
|
||||||
const struct drm_plane_helper_funcs *helper_funcs = NULL;
|
const struct drm_plane_helper_funcs *helper_funcs = NULL;
|
||||||
const struct drm_plane_funcs *funcs;
|
const struct drm_plane_funcs *funcs;
|
||||||
struct drm_plane *plane;
|
struct drm_plane *plane;
|
||||||
const uint32_t *formats;
|
const u32 *formats;
|
||||||
int num_formats;
|
int num_formats;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче