drm/i915: stick to kernel fixed size types
We no longer allow mixed C99 and kernel types, and the preference is to use kernel types exclusively. Fix the C99 types that have crept in since the mass conversion. No functional changes. Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Cc: Kevin Strasser <kevin.strasser@intel.com> Cc: Ramalingam C <ramalingam.c@intel.com> Cc: Swati Sharma <swati2.sharma@intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190318160019.9309-1-jani.nikula@intel.com
This commit is contained in:
@@ -1821,7 +1821,7 @@ static const u32 skl_plane_formats[] = {
|
||||
DRM_FORMAT_VYUY,
|
||||
};
|
||||
|
||||
static const uint32_t icl_plane_formats[] = {
|
||||
static const u32 icl_plane_formats[] = {
|
||||
DRM_FORMAT_C8,
|
||||
DRM_FORMAT_RGB565,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
@@ -1842,7 +1842,7 @@ static const uint32_t icl_plane_formats[] = {
|
||||
DRM_FORMAT_Y416,
|
||||
};
|
||||
|
||||
static const uint32_t icl_hdr_plane_formats[] = {
|
||||
static const u32 icl_hdr_plane_formats[] = {
|
||||
DRM_FORMAT_C8,
|
||||
DRM_FORMAT_RGB565,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
@@ -1883,7 +1883,7 @@ static const u32 skl_planar_formats[] = {
|
||||
DRM_FORMAT_NV12,
|
||||
};
|
||||
|
||||
static const uint32_t glk_planar_formats[] = {
|
||||
static const u32 glk_planar_formats[] = {
|
||||
DRM_FORMAT_C8,
|
||||
DRM_FORMAT_RGB565,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
@@ -1902,7 +1902,7 @@ static const uint32_t glk_planar_formats[] = {
|
||||
DRM_FORMAT_P016,
|
||||
};
|
||||
|
||||
static const uint32_t icl_planar_formats[] = {
|
||||
static const u32 icl_planar_formats[] = {
|
||||
DRM_FORMAT_C8,
|
||||
DRM_FORMAT_RGB565,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
@@ -1927,7 +1927,7 @@ static const uint32_t icl_planar_formats[] = {
|
||||
DRM_FORMAT_Y416,
|
||||
};
|
||||
|
||||
static const uint32_t icl_hdr_planar_formats[] = {
|
||||
static const u32 icl_hdr_planar_formats[] = {
|
||||
DRM_FORMAT_C8,
|
||||
DRM_FORMAT_RGB565,
|
||||
DRM_FORMAT_XRGB8888,
|
||||
|
Reference in New Issue
Block a user