diff mbox

[RFC] backlight: otm3225a: otm3225a_ops can be static

Message ID 20171222222326.GA55764@lkp-sb04 (mailing list archive)
State New, archived
Headers show

Commit Message

kernel test robot Dec. 22, 2017, 10:23 p.m. UTC
Fixes: 640b353b5467 ("backlight: otm3225a: add support for ORISE OTM3225A LCD SoC")
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 otm3225a.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--
To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/video/backlight/otm3225a.c b/drivers/video/backlight/otm3225a.c
index 0de75f8..056ac8b 100644
--- a/drivers/video/backlight/otm3225a.c
+++ b/drivers/video/backlight/otm3225a.c
@@ -137,7 +137,7 @@  static int otm3225a_get_power(struct lcd_device *ld)
 	return dd->power;
 }
 
-struct lcd_ops otm3225a_ops = {
+static struct lcd_ops otm3225a_ops = {
 	.set_power = otm3225a_set_power,
 	.get_power = otm3225a_get_power,
 };