[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20240111071823.10142-1-chenguohua_716@163.com>
Date: Thu, 11 Jan 2024 07:18:23 +0000
From: GuoHua Chen <chenguohua_716@....com>
To: alain.volmat@...s.st.com,
airlied@...il.com,
daniel@...ll.ch,
mripard@...nel.org,
maarten.lankhorst@...ux.intel.com,
tzimmermann@...e.de
Cc: linux-kernel@...r.kernel.org,
dri-devel@...ts.freedesktop.org,
GuoHua Chen <chenguohua_716@....com>
Subject: [PATCH] drm/sti: Clean up errors in sti_mixer.c
Fix the following errors reported by checkpatch:
ERROR: do not initialise statics to 0x000000
Signed-off-by: GuoHua Chen <chenguohua_716@....com>
---
drivers/gpu/drm/sti/sti_mixer.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/sti/sti_mixer.c b/drivers/gpu/drm/sti/sti_mixer.c
index 7e5f14646625..6628c7f78868 100644
--- a/drivers/gpu/drm/sti/sti_mixer.c
+++ b/drivers/gpu/drm/sti/sti_mixer.c
@@ -16,7 +16,7 @@
#include "sti_vtg.h"
/* Module parameter to set the background color of the mixer */
-static unsigned int bkg_color = 0x000000;
+static unsigned int bkg_color;
MODULE_PARM_DESC(bkgcolor, "Value of the background color 0xRRGGBB");
module_param_named(bkgcolor, bkg_color, int, 0644);
--
2.17.1
Powered by blists - more mailing lists