From c385ac283023a4fdd304674a8163ac271a1fb758 Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Sat, 25 Jul 2015 20:59:35 +0800 Subject: video: discard empty video_set_lut implementation Discard the empty video_set_lut function from platform video drivers. This commit "69d275458893eaec35229b589092c2a6bde5440f" introduces a weak function video_set_lut, so we do not need an strong function in platform drivers, which does nothing. Signed-off-by: Peng Fan Reviewed-by: Tom Rini --- drivers/video/mxc_ipuv3_fb.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'drivers/video/mxc_ipuv3_fb.c') diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c index 1fa9531..265274b 100644 --- a/drivers/video/mxc_ipuv3_fb.c +++ b/drivers/video/mxc_ipuv3_fb.c @@ -599,15 +599,6 @@ void *video_hw_init(void) return (void *)&panel; } -void video_set_lut(unsigned int index, /* color number */ - unsigned char r, /* red */ - unsigned char g, /* green */ - unsigned char b /* blue */ - ) -{ - return; -} - int ipuv3_fb_init(struct fb_videomode const *mode, uint8_t disp, uint32_t pixfmt) -- cgit v1.1