Commit 5354cb64 authored by Archana kumari's avatar Archana kumari Committed by Greg Kroah-Hartman
Browse files

staging: imx-drm: Fix warning for static const char * array in imx-ldb.c



This patch fixes the warning "static const char * array should
probably be static const char * const" in imx-ldb.c.

Signed-off-by: default avatarArchana kumari <archanakumari959@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9b38da66
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -414,7 +414,7 @@ enum {
	LVDS_BIT_MAP_JEIDA
};

static const char *imx_ldb_bit_mappings[] = {
static const char * const imx_ldb_bit_mappings[] = {
	[LVDS_BIT_MAP_SPWG]  = "spwg",
	[LVDS_BIT_MAP_JEIDA] = "jeida",
};