mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 13:14:02 +02:00
fbdev: au1100fb: drop unneeded semicolon
When a function-like macro expands to an expression, that expression
doesn't need a semicolon after it. All uses have been verified to
have their own semicolons.
This was found using the following Coccinelle semantic patch:
@r@
identifier i : script:ocaml() { String.lowercase_ascii i = i };
expression e;
@@
*#define i(...) e;
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
0fc41be57d
commit
49e4950e17
|
|
@ -393,7 +393,7 @@ static struct au1100fb_panel known_lcd_panels[] =
|
|||
#define DRIVER_DESC "LCD controller driver for AU1100 processors"
|
||||
|
||||
#define to_au1100fb_device(_info) \
|
||||
(_info ? container_of(_info, struct au1100fb_device, info) : NULL);
|
||||
(_info ? container_of(_info, struct au1100fb_device, info) : NULL)
|
||||
|
||||
/* Bitfields format supported by the controller. Note that the order of formats
|
||||
* SHOULD be the same as in the LCD_CONTROL_SBPPF field, so we can retrieve the
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user