diff options
author | Pushkar Jambhlekar <pushkar.iit@gmail.com> | 2017-04-07 11:03:24 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2017-04-07 11:03:24 -0400 |
commit | 0cb51f6532639254eca4aba979b503f6eb467bb4 (patch) | |
tree | 187c915852e02940869feda2d4cb6a886ae3039e | |
parent | 5a93db427ab170c9793d76abf3e4be1ebd09375f (diff) |
drivers/video/fbdev: Fixing coding guidelines in acornfb.c
Fixing coding guidelines error reported by 'checkpatch.pl'
Signed-off-by: Pushkar Jambhlekar <pushkar.iit@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
-rw-r--r-- | drivers/video/fbdev/acornfb.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/video/fbdev/acornfb.c b/drivers/video/fbdev/acornfb.c index fb75b7e5a19a..0c325b4da61d 100644 --- a/drivers/video/fbdev/acornfb.c +++ b/drivers/video/fbdev/acornfb.c | |||
@@ -101,7 +101,7 @@ extern unsigned int vram_size; /* set by setup.c */ | |||
101 | #ifdef HAS_VIDC20 | 101 | #ifdef HAS_VIDC20 |
102 | #include <mach/acornfb.h> | 102 | #include <mach/acornfb.h> |
103 | 103 | ||
104 | #define MAX_SIZE 2*1024*1024 | 104 | #define MAX_SIZE (2*1024*1024) |
105 | 105 | ||
106 | /* VIDC20 has a different set of rules from the VIDC: | 106 | /* VIDC20 has a different set of rules from the VIDC: |
107 | * hcr : must be multiple of 4 | 107 | * hcr : must be multiple of 4 |
@@ -162,7 +162,7 @@ static void acornfb_set_timing(struct fb_info *info) | |||
162 | if (memcmp(¤t_vidc, &vidc, sizeof(vidc))) { | 162 | if (memcmp(¤t_vidc, &vidc, sizeof(vidc))) { |
163 | current_vidc = vidc; | 163 | current_vidc = vidc; |
164 | 164 | ||
165 | vidc_writel(VIDC20_CTRL| vidc.control); | 165 | vidc_writel(VIDC20_CTRL | vidc.control); |
166 | vidc_writel(0xd0000000 | vidc.pll_ctl); | 166 | vidc_writel(0xd0000000 | vidc.pll_ctl); |
167 | vidc_writel(0x80000000 | vidc.h_cycle); | 167 | vidc_writel(0x80000000 | vidc.h_cycle); |
168 | vidc_writel(0x81000000 | vidc.h_sync_width); | 168 | vidc_writel(0x81000000 | vidc.h_sync_width); |
@@ -297,7 +297,7 @@ acornfb_setcolreg(u_int regno, u_int red, u_int green, u_int blue, | |||
297 | pal.p = 0; | 297 | pal.p = 0; |
298 | vidc_writel(0x10000000); | 298 | vidc_writel(0x10000000); |
299 | for (i = 0; i < 256; i += 1) { | 299 | for (i = 0; i < 256; i += 1) { |
300 | pal.vidc20.red = current_par.palette[ i & 31].vidc20.red; | 300 | pal.vidc20.red = current_par.palette[i & 31].vidc20.red; |
301 | pal.vidc20.green = current_par.palette[(i >> 1) & 31].vidc20.green; | 301 | pal.vidc20.green = current_par.palette[(i >> 1) & 31].vidc20.green; |
302 | pal.vidc20.blue = current_par.palette[(i >> 2) & 31].vidc20.blue; | 302 | pal.vidc20.blue = current_par.palette[(i >> 2) & 31].vidc20.blue; |
303 | vidc_writel(pal.p); | 303 | vidc_writel(pal.p); |
@@ -1043,8 +1043,7 @@ static int acornfb_probe(struct platform_device *dev) | |||
1043 | base = dma_alloc_wc(current_par.dev, size, &handle, | 1043 | base = dma_alloc_wc(current_par.dev, size, &handle, |
1044 | GFP_KERNEL); | 1044 | GFP_KERNEL); |
1045 | if (base == NULL) { | 1045 | if (base == NULL) { |
1046 | printk(KERN_ERR "acornfb: unable to allocate screen " | 1046 | printk(KERN_ERR "acornfb: unable to allocate screen memory\n"); |
1047 | "memory\n"); | ||
1048 | return -ENOMEM; | 1047 | return -ENOMEM; |
1049 | } | 1048 | } |
1050 | 1049 | ||
@@ -1103,8 +1102,7 @@ static int acornfb_probe(struct platform_device *dev) | |||
1103 | v_sync = h_sync / (fb_info.var.yres + fb_info.var.upper_margin + | 1102 | v_sync = h_sync / (fb_info.var.yres + fb_info.var.upper_margin + |
1104 | fb_info.var.lower_margin + fb_info.var.vsync_len); | 1103 | fb_info.var.lower_margin + fb_info.var.vsync_len); |
1105 | 1104 | ||
1106 | printk(KERN_INFO "Acornfb: %dkB %cRAM, %s, using %dx%d, " | 1105 | printk(KERN_INFO "Acornfb: %dkB %cRAM, %s, using %dx%d, %d.%03dkHz, %dHz\n", |
1107 | "%d.%03dkHz, %dHz\n", | ||
1108 | fb_info.fix.smem_len / 1024, | 1106 | fb_info.fix.smem_len / 1024, |
1109 | current_par.using_vram ? 'V' : 'D', | 1107 | current_par.using_vram ? 'V' : 'D', |
1110 | VIDC_NAME, fb_info.var.xres, fb_info.var.yres, | 1108 | VIDC_NAME, fb_info.var.xres, fb_info.var.yres, |