projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e07405
)
fbcon: remove stray semicolons
author
Jan Beulich
<
[email protected]
>
Thu, 24 Jul 2008 04:31:49 +0000
(21:31 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 24 Jul 2008 17:47:41 +0000
(10:47 -0700)
[
[email protected]
: coding-style fixes]
Signed-off-by: Jan Beulich <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/console/fbcon.h
patch
|
blob
|
history
diff --git
a/drivers/video/console/fbcon.h
b/drivers/video/console/fbcon.h
index beb6a74fc7f21a7a82394e340649670668e273c0..de1b1365279b90dcafc6dd34ab804e7b7d33ab49 100644
(file)
--- a/
drivers/video/console/fbcon.h
+++ b/
drivers/video/console/fbcon.h
@@
-146,10
+146,8
@@
static inline int attr_col_ec(int shift, struct vc_data *vc,
return is_fg ? fg : bg;
}
-#define attr_bgcol_ec(bgshift,vc,info) \
- attr_col_ec(bgshift,vc,info,0);
-#define attr_fgcol_ec(fgshift,vc,info) \
- attr_col_ec(fgshift,vc,info,1);
+#define attr_bgcol_ec(bgshift, vc, info) attr_col_ec(bgshift, vc, info, 0)
+#define attr_fgcol_ec(fgshift, vc, info) attr_col_ec(fgshift, vc, info, 1)
/* Font */
#define REFCOUNT(fd) (((int *)(fd))[-1])