Commit cba603bf authored by Jan Beulich's avatar Jan Beulich Committed by Linus Torvalds

fbcon: remove stray semicolons

[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: default avatarJan Beulich <jbeulich@novell.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3e074058
...@@ -146,10 +146,8 @@ static inline int attr_col_ec(int shift, struct vc_data *vc, ...@@ -146,10 +146,8 @@ static inline int attr_col_ec(int shift, struct vc_data *vc,
return is_fg ? fg : bg; return is_fg ? fg : bg;
} }
#define attr_bgcol_ec(bgshift,vc,info) \ #define attr_bgcol_ec(bgshift, vc, info) attr_col_ec(bgshift, vc, info, 0)
attr_col_ec(bgshift,vc,info,0); #define attr_fgcol_ec(fgshift, vc, info) attr_col_ec(fgshift, vc, info, 1)
#define attr_fgcol_ec(fgshift,vc,info) \
attr_col_ec(fgshift,vc,info,1);
/* Font */ /* Font */
#define REFCOUNT(fd) (((int *)(fd))[-1]) #define REFCOUNT(fd) (((int *)(fd))[-1])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment