All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 1/2] staging: fbtft: Remove unused #defines.
@ 2019-03-06  5:23 Bhagyashri Dighole
  2019-03-06  7:59 ` [Outreachy kernel] " Julia Lawall
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Bhagyashri Dighole @ 2019-03-06  5:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: Outreachy

Remove unused #defines detected by checkpatch.pl.

Signed-off-by: Bhagyashri Dighole <digholebhagyashri@gmail.com>
---
Changes in v3:
  -- Change the subject line according to log messages.
  -- Remove extra spaces.

Changes in v2:
  - Remove unused macro.

 drivers/staging/fbtft/fb_watterott.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/staging/fbtft/fb_watterott.c b/drivers/staging/fbtft/fb_watterott.c
index 0a5206d..502d67f 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)
 {
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-03-06 10:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-06  5:23 [PATCH v3 1/2] staging: fbtft: Remove unused #defines Bhagyashri Dighole
2019-03-06  7:59 ` [Outreachy kernel] " Julia Lawall
2019-03-06  7:59 ` Julia Lawall
2019-03-06  8:22   ` Bhagyashri Dighole
2019-03-06  9:44     ` Julia Lawall
2019-03-06 10:16       ` Bhagyashri Dighole
2019-03-06  9:11 ` Greg Kroah-Hartman
2019-03-06  9:31   ` Bhagyashri Dighole

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.