From 8ccf155386e670a3c6620510a4a3cb00fa76cd76 Mon Sep 17 00:00:00 2001 From: Heba Aamer Date: Tue, 27 Jan 2015 22:39:56 +0200 Subject: staging: fbtft: fix Macros with complex values should be enclosed in parentheses This patch fixes the following checkpatch.pl error: fix Macros with complex values should be enclosed in parentheses Signed-off-by: Heba Aamer Signed-off-by: Greg Kroah-Hartman --- drivers/staging/fbtft/fb_pcd8544.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/staging/fbtft') diff --git a/drivers/staging/fbtft/fb_pcd8544.c b/drivers/staging/fbtft/fb_pcd8544.c index dd72bedc6a00..d20d432745d5 100644 --- a/drivers/staging/fbtft/fb_pcd8544.c +++ b/drivers/staging/fbtft/fb_pcd8544.c @@ -33,7 +33,7 @@ #define DRVNAME "fb_pcd8544" #define WIDTH 84 #define HEIGHT 48 -#define TXBUFLEN 84*6 +#define TXBUFLEN (84*6) #define DEFAULT_GAMMA "40" /* gamma is used to control contrast in this driver */ static unsigned tc = 0; -- cgit v1.2.3-59-g8ed1b