diff options
author | Zac Storer <zac.3.14159@gmail.com> | 2011-11-17 21:38:58 -0700 |
---|---|---|
committer | Florian Tobias Schandinat <FlorianSchandinat@gmx.de> | 2011-11-22 01:00:24 +0000 |
commit | 2dfd7cf6ce581621c5c0103f96cca7a9924b5f94 (patch) | |
tree | c61a8e0703e4eaf062e3be9a7becf63c321437f9 /drivers | |
parent | 5345010cc8e87af7f1f48e5c816b10f96f474da1 (diff) |
Drivers: video: sbuslib: fixed a brace coding style issue
Fixed a brace coding style issue.
Signed-off-by: Zac Storer <zac.3.14159@gmail.com>
Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/video/sbuslib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/sbuslib.c b/drivers/video/sbuslib.c index 37d764ad56b0..3c1de981a18c 100644 --- a/drivers/video/sbuslib.c +++ b/drivers/video/sbuslib.c @@ -76,7 +76,7 @@ int sbusfb_mmap_helper(struct sbus_mmap_map *map, map_offset = (physbase + map[i].poff) & POFF_MASK; break; } - if (!map_size){ + if (!map_size) { page += PAGE_SIZE; continue; } |