From: Bhagyashri Dighole Date: Wed, 6 Mar 2019 11:12:22 +0000 (+0530) Subject: staging: fbtft: Remove unused #defines. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=730551f754a7f58a97408a889e9c19aa6d2767a6;p=openwrt%2Fstaging%2Fblogic.git staging: fbtft: Remove unused #defines. Remove unused #defines, which is detected while resolving `CHECK: Avoid CamelCase` issue. Signed-off-by: Bhagyashri Dighole Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/fbtft/fb_watterott.c b/drivers/staging/fbtft/fb_watterott.c index 0a5206d28da4..502d67f3a743 100644 --- a/drivers/staging/fbtft/fb_watterott.c +++ b/drivers/staging/fbtft/fb_watterott.c @@ -90,15 +90,9 @@ static int write_vmem(struct fbtft_par *par, size_t offset, size_t len) return 0; } -#define RGB565toRGB323(c) ((((c) & 0xE000) >> 8) |\ - (((c) & 000600) >> 6) |\ - (((c) & 0x001C) >> 2)) #define RGB565toRGB332(c) ((((c) & 0xE000) >> 8) |\ (((c) & 000700) >> 6) |\ (((c) & 0x0018) >> 3)) -#define RGB565toRGB233(c) ((((c) & 0xC000) >> 8) |\ - (((c) & 000700) >> 5) |\ - (((c) & 0x001C) >> 2)) static int write_vmem_8bit(struct fbtft_par *par, size_t offset, size_t len) {