[PATCH] media: vim2m: remove unused CLIP macro

Yunseong Kim posted 1 patch 2 months, 3 weeks ago
drivers/media/test-drivers/vim2m.c | 3 ---
1 file changed, 3 deletions(-)
[PATCH] media: vim2m: remove unused CLIP macro
Posted by Yunseong Kim 2 months, 3 weeks ago
The CLIP macro, which was used to clamp color component values to the
[0, 255] range, is no longer used anywhere in the vim2m driver. Remove it
to clean up the code and avoid confusion.

The following issues were reported by checkpatch:
ERROR: Macros with complex values should be enclosed in parentheses

Signed-off-by: Yunseong Kim <ysk@kzalloc.com>
---
 drivers/media/test-drivers/vim2m.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/media/test-drivers/vim2m.c b/drivers/media/test-drivers/vim2m.c
index 1d1a9e768505..97cab9c558e7 100644
--- a/drivers/media/test-drivers/vim2m.c
+++ b/drivers/media/test-drivers/vim2m.c
@@ -268,9 +268,6 @@ static const char *type_name(enum v4l2_buf_type type)
 	}
 }
 
-#define CLIP(__color) \
-	(u8)(((__color) > 0xff) ? 0xff : (((__color) < 0) ? 0 : (__color)))
-
 static void copy_line(struct vim2m_q_data *q_data_out,
 		      u8 *src, u8 *dst, bool reverse)
 {
-- 
2.39.5