Skip to content

Commit

Permalink
fbcon: remove stray semicolons
Browse files Browse the repository at this point in the history
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Jan Beulich authored and Linus Torvalds committed Jul 24, 2008
1 parent 3e07405 commit cba603b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/video/console/fbcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down

0 comments on commit cba603b

Please sign in to comment.