== Series Details == Series: Enable P0xx (planar), Y2xx and Y4xx (packed) pixel formats URL : https://patchwork.freedesktop.org/series/56402/ State : warning == Summary == $ dim checkpatch origin/drm-tip 38dc7fc809e3 drm: Add P010, P012, P016 format definitions and fourcc -:28: WARNING:LONG_LINE: line over 100 characters #28: FILE: drivers/gpu/drm/drm_fourcc.c:229: + { .format = DRM_FORMAT_P010, .depth = 0, .num_planes = 2, .cpp = { 2, 4, 0 }, .hsub = 2, .vsub = 2, .is_yuv = true }, -:29: WARNING:LONG_LINE: line over 100 characters #29: FILE: drivers/gpu/drm/drm_fourcc.c:230: + { .format = DRM_FORMAT_P012, .depth = 0, .num_planes = 2, .cpp = { 2, 4, 0 }, .hsub = 2, .vsub = 2, .is_yuv = true }, -:30: WARNING:LONG_LINE: line over 100 characters #30: FILE: drivers/gpu/drm/drm_fourcc.c:231: + { .format = DRM_FORMAT_P016, .depth = 0, .num_planes = 2, .cpp = { 2, 4, 0 }, .hsub = 2, .vsub = 2, .is_yuv = true }, -:48: WARNING:LONG_LINE_COMMENT: line over 100 characters #48: FILE: include/uapi/drm/drm_fourcc.h:204: +#define DRM_FORMAT_P010 fourcc_code('P', '0', '1', '0') /* 2x2 subsampled Cr:Cb plane, 10 bit per channel */ -:49: WARNING:LONG_LINE_COMMENT: line over 100 characters #49: FILE: include/uapi/drm/drm_fourcc.h:205: +#define DRM_FORMAT_P012 fourcc_code('P', '0', '1', '2') /* 2x2 subsampled Cr:Cb plane, 12 bit per channel */ -:50: WARNING:LONG_LINE_COMMENT: line over 100 characters #50: FILE: include/uapi/drm/drm_fourcc.h:206: +#define DRM_FORMAT_P016 fourcc_code('P', '0', '1', '6') /* 2x2 subsampled Cr:Cb plane, 16 bit per channel */ total: 0 errors, 6 warnings, 0 checks, 25 lines checked f74a10ecf9d5 drm/i915: Add P010, P012, P016 plane control definitions b1b27b4ea1a4 drm/i915: preparations for enabling P010, P012, P016 formats a2b1c9c3bdb9 drm/i915: enable P010, P012, P016 formats for primary and sprite planes -:20: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #20: FILE: drivers/gpu/drm/i915/intel_sprite.c:1835: +static const uint32_t glk_planar_formats[] = { total: 0 errors, 0 warnings, 1 checks, 40 lines checked 920311db8b32 drm: Add Y2xx and Y4xx (xx:10/12/16) format definitions and fourcc -:47: WARNING:LONG_LINE: line over 100 characters #47: FILE: drivers/gpu/drm/drm_fourcc.c:232: + { .format = DRM_FORMAT_Y210, .depth = 0, .num_planes = 1, .cpp = { 4, 0, 0 }, .hsub = 2, .vsub = 1, .is_yuv = true }, -:48: WARNING:LONG_LINE: line over 100 characters #48: FILE: drivers/gpu/drm/drm_fourcc.c:233: + { .format = DRM_FORMAT_Y212, .depth = 0, .num_planes = 1, .cpp = { 4, 0, 0 }, .hsub = 2, .vsub = 1, .is_yuv = true }, -:49: WARNING:LONG_LINE: line over 100 characters #49: FILE: drivers/gpu/drm/drm_fourcc.c:234: + { .format = DRM_FORMAT_Y216, .depth = 0, .num_planes = 1, .cpp = { 4, 0, 0 }, .hsub = 2, .vsub = 1, .is_yuv = true }, -:50: WARNING:LONG_LINE: line over 100 characters #50: FILE: drivers/gpu/drm/drm_fourcc.c:235: + { .format = DRM_FORMAT_Y410, .depth = 0, .num_planes = 1, .cpp = { 4, 0, 0 }, .hsub = 1, .vsub = 1, .is_yuv = true }, -:51: WARNING:LONG_LINE: line over 100 characters #51: FILE: drivers/gpu/drm/drm_fourcc.c:236: + { .format = DRM_FORMAT_Y412, .depth = 0, .num_planes = 1, .cpp = { 8, 0, 0 }, .hsub = 1, .vsub = 1, .is_yuv = true }, -:52: WARNING:LONG_LINE: line over 100 characters #52: FILE: drivers/gpu/drm/drm_fourcc.c:237: + { .format = DRM_FORMAT_Y416, .depth = 0, .num_planes = 1, .cpp = { 8, 0, 0 }, .hsub = 1, .vsub = 1, .is_yuv = true }, -:65: WARNING:LONG_LINE_COMMENT: line over 100 characters #65: FILE: include/uapi/drm/drm_fourcc.h:154: +#define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V') /* [31:0] X:Y:Cb:Cr 8:8:8:8 little endian */ -:71: WARNING:LONG_LINE_COMMENT: line over 100 characters #71: FILE: include/uapi/drm/drm_fourcc.h:160: +#define DRM_FORMAT_Y210 fourcc_code('Y', '2', '1', '0') /* [63:0] Y0:x:Cb0:x:Y1:x:Cr1:x 10:6:10:6:10:6:10:6 little endian per 2 Y pixels */ -:72: WARNING:LONG_LINE_COMMENT: line over 100 characters #72: FILE: include/uapi/drm/drm_fourcc.h:161: +#define DRM_FORMAT_Y212 fourcc_code('Y', '2', '1', '2') /* [63:0] Y0:x:Cb0:x:Y1:x:Cr1:x 12:4:12:4:12:4:12:4 little endian per 2 Y pixels */ -:73: WARNING:LONG_LINE_COMMENT: line over 100 characters #73: FILE: include/uapi/drm/drm_fourcc.h:162: +#define DRM_FORMAT_Y216 fourcc_code('Y', '2', '1', '6') /* [63:0] Y0:Cb0:Y1:Cr1 16:16:16:16 little endian per 2 Y pixels */ -:79: WARNING:LONG_LINE_COMMENT: line over 100 characters #79: FILE: include/uapi/drm/drm_fourcc.h:168: +#define DRM_FORMAT_Y410 fourcc_code('Y', '4', '1', '0') /* [31:0] X:V:Y:U 2:10:10:10 little endian */ -:80: WARNING:LONG_LINE_COMMENT: line over 100 characters #80: FILE: include/uapi/drm/drm_fourcc.h:169: +#define DRM_FORMAT_Y412 fourcc_code('Y', '4', '1', '2') /* [63:0] X:x:V:x:Y:x:U:x 12:4:12:4:12:4:12:4 little endian */ -:81: WARNING:LONG_LINE_COMMENT: line over 100 characters #81: FILE: include/uapi/drm/drm_fourcc.h:170: +#define DRM_FORMAT_Y416 fourcc_code('Y', '4', '1', '6') /* [63:0] X:V:Y:U 16:16:16:16 little endian */ total: 0 errors, 13 warnings, 0 checks, 36 lines checked 1160d89040e9 drm/i915/icl: Add Y2xx and Y4xx (xx:10/12/16) plane control definitions d370590c113c drm/i915/icl: Enabling Y2xx and Y4xx (xx:10/12/16) formats for universal planes -:76: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #76: FILE: drivers/gpu/drm/i915/intel_sprite.c:1819: +static const uint32_t icl_plane_formats[] = { -:104: CHECK:PREFER_KERNEL_TYPES: Prefer kernel type 'u32' over 'uint32_t' #104: FILE: drivers/gpu/drm/i915/intel_sprite.c:1875: +static const uint32_t icl_planar_formats[] = { total: 0 errors, 0 warnings, 2 checks, 138 lines checked _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx