diff options
author | Joe Perches <joe@perches.com> | 2009-08-18 11:18:35 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-09-21 15:14:58 +0200 |
commit | a419aef8b858a2bdb98df60336063d28df4b272f (patch) | |
tree | 1736f6650ec0bfc01074c489fc47396114099c5e /drivers/video/cfbcopyarea.c | |
parent | 2944fcbe03d65a704f07e43efe14adb0d226fd09 (diff) |
trivial: remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/video/cfbcopyarea.c')
-rw-r--r-- | drivers/video/cfbcopyarea.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/cfbcopyarea.c b/drivers/video/cfbcopyarea.c index df03f3776dcc..79e5f40e6486 100644 --- a/drivers/video/cfbcopyarea.c +++ b/drivers/video/cfbcopyarea.c @@ -114,7 +114,7 @@ bitcpy(struct fb_info *p, unsigned long __iomem *dst, int dst_idx, d0 >>= right; } else if (src_idx+n <= bits) { // Single source word - d0 <<= left;; + d0 <<= left; } else { // 2 source words d1 = FB_READL(src + 1); |