[<prev] [next>] [day] [month] [year] [list]
Message-ID: <30f5993e321ab1392914591b6f3a3d15d44610c8.1533857891.git.leobras.c@gmail.com>
Date: Thu, 9 Aug 2018 20:38:49 -0300
From: Leonardo Brás <leobras.c@...il.com>
To: Thomas Petazzoni <thomas.petazzoni@...e-electrons.com>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: [PATCH 1/1] staging: fbtft: Removes ";" from very used macro
definition.
All usages of this macro append the ";" at the end of
line. It is not recommended nor necessary to append
a ";" at the end of this macro definition.
Signed-off-by: Leonardo Brás <leobras.c@...il.com>
---
drivers/staging/fbtft/fbtft.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/fbtft/fbtft.h b/drivers/staging/fbtft/fbtft.h
index 25302ffc4000..ad79d6a80443 100644
--- a/drivers/staging/fbtft/fbtft.h
+++ b/drivers/staging/fbtft/fbtft.h
@@ -342,7 +342,7 @@ static void __exit fbtft_driver_module_exit(void) \
} \
\
module_init(fbtft_driver_module_init); \
-module_exit(fbtft_driver_module_exit);
+module_exit(fbtft_driver_module_exit)
/* Debug macros */
--
2.18.0
Powered by blists - more mailing lists