提交 4a85dc8b 编写于 作者: T Timur Tabi 提交者: Florian Tobias Schandinat

drivers/video: fsl-diu-fb: clean up whitespace and formatting

Fix various indentation and line length problems in the Freescale
DIU framebuffer driver.
Signed-off-by: NTimur Tabi <timur@freescale.com>
Signed-off-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
上级 be444890
...@@ -223,53 +223,53 @@ struct mfb_info { ...@@ -223,53 +223,53 @@ struct mfb_info {
static struct mfb_info mfb_template[] = { static struct mfb_info mfb_template[] = {
{ /* AOI 0 for plane 0 */ { /* AOI 0 for plane 0 */
.index = 0, .index = 0,
.type = MFB_TYPE_OUTPUT, .type = MFB_TYPE_OUTPUT,
.id = "Panel0", .id = "Panel0",
.registered = 0, .registered = 0,
.count = 0, .count = 0,
.x_aoi_d = 0, .x_aoi_d = 0,
.y_aoi_d = 0, .y_aoi_d = 0,
}, },
{ /* AOI 0 for plane 1 */ { /* AOI 0 for plane 1 */
.index = 1, .index = 1,
.type = MFB_TYPE_OUTPUT, .type = MFB_TYPE_OUTPUT,
.id = "Panel1 AOI0", .id = "Panel1 AOI0",
.registered = 0, .registered = 0,
.g_alpha = 0xff, .g_alpha = 0xff,
.count = 0, .count = 0,
.x_aoi_d = 0, .x_aoi_d = 0,
.y_aoi_d = 0, .y_aoi_d = 0,
}, },
{ /* AOI 1 for plane 1 */ { /* AOI 1 for plane 1 */
.index = 2, .index = 2,
.type = MFB_TYPE_OUTPUT, .type = MFB_TYPE_OUTPUT,
.id = "Panel1 AOI1", .id = "Panel1 AOI1",
.registered = 0, .registered = 0,
.g_alpha = 0xff, .g_alpha = 0xff,
.count = 0, .count = 0,
.x_aoi_d = 0, .x_aoi_d = 0,
.y_aoi_d = 480, .y_aoi_d = 480,
}, },
{ /* AOI 0 for plane 2 */ { /* AOI 0 for plane 2 */
.index = 3, .index = 3,
.type = MFB_TYPE_OUTPUT, .type = MFB_TYPE_OUTPUT,
.id = "Panel2 AOI0", .id = "Panel2 AOI0",
.registered = 0, .registered = 0,
.g_alpha = 0xff, .g_alpha = 0xff,
.count = 0, .count = 0,
.x_aoi_d = 640, .x_aoi_d = 640,
.y_aoi_d = 0, .y_aoi_d = 0,
}, },
{ /* AOI 1 for plane 2 */ { /* AOI 1 for plane 2 */
.index = 4, .index = 4,
.type = MFB_TYPE_OUTPUT, .type = MFB_TYPE_OUTPUT,
.id = "Panel2 AOI1", .id = "Panel2 AOI1",
.registered = 0, .registered = 0,
.g_alpha = 0xff, .g_alpha = 0xff,
.count = 0, .count = 0,
.x_aoi_d = 640, .x_aoi_d = 640,
.y_aoi_d = 480, .y_aoi_d = 480,
}, },
}; };
...@@ -715,8 +715,8 @@ static void update_lcdc(struct fb_info *info) ...@@ -715,8 +715,8 @@ static void update_lcdc(struct fb_info *info)
/* Prep for DIU init - gamma table, cursor table */ /* Prep for DIU init - gamma table, cursor table */
for (i = 0; i <= 2; i++) for (i = 0; i <= 2; i++)
for (j = 0; j <= 255; j++) for (j = 0; j <= 255; j++)
*gamma_table_base++ = j; *gamma_table_base++ = j;
diu_ops.set_gamma_table(machine_data->monitor_port, pool.gamma.vaddr); diu_ops.set_gamma_table(machine_data->monitor_port, pool.gamma.vaddr);
...@@ -887,7 +887,7 @@ static int fsl_diu_set_par(struct fb_info *info) ...@@ -887,7 +887,7 @@ static int fsl_diu_set_par(struct fb_info *info)
static inline __u32 CNVT_TOHW(__u32 val, __u32 width) static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
{ {
return ((val<<width) + 0x7FFF - val)>>16; return ((val << width) + 0x7FFF - val) >> 16;
} }
/* /*
...@@ -899,8 +899,9 @@ static inline __u32 CNVT_TOHW(__u32 val, __u32 width) ...@@ -899,8 +899,9 @@ static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
* pseudo_palette in struct fb_info. For pseudocolor mode we have a limited * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
* color palette. * color palette.
*/ */
static int fsl_diu_setcolreg(unsigned regno, unsigned red, unsigned green, static int fsl_diu_setcolreg(unsigned int regno, unsigned int red,
unsigned blue, unsigned transp, struct fb_info *info) unsigned int green, unsigned int blue,
unsigned int transp, struct fb_info *info)
{ {
int ret = 1; int ret = 1;
...@@ -1350,6 +1351,7 @@ static irqreturn_t fsl_diu_isr(int irq, void *dev_id) ...@@ -1350,6 +1351,7 @@ static irqreturn_t fsl_diu_isr(int irq, void *dev_id)
#if defined(CONFIG_NOT_COHERENT_CACHE) #if defined(CONFIG_NOT_COHERENT_CACHE)
else if (status & INT_VSYNC) { else if (status & INT_VSYNC) {
unsigned int i; unsigned int i;
for (i = 0; i < coherence_data_size; for (i = 0; i < coherence_data_size;
i += d_cache_line_size) i += d_cache_line_size)
__asm__ __volatile__ ( __asm__ __volatile__ (
...@@ -1381,6 +1383,7 @@ static int request_irq_local(int irq) ...@@ -1381,6 +1383,7 @@ static int request_irq_local(int irq)
#if !defined(CONFIG_NOT_COHERENT_CACHE) #if !defined(CONFIG_NOT_COHERENT_CACHE)
ints |= INT_VSYNC; ints |= INT_VSYNC;
#endif #endif
if (dr.mode == MFB_MODE2 || dr.mode == MFB_MODE3) if (dr.mode == MFB_MODE2 || dr.mode == MFB_MODE3)
ints |= INT_VSYNC_WB; ints |= INT_VSYNC_WB;
...@@ -1388,6 +1391,7 @@ static int request_irq_local(int irq) ...@@ -1388,6 +1391,7 @@ static int request_irq_local(int irq)
status = in_be32(&hw->int_status); status = in_be32(&hw->int_status);
out_be32(&hw->int_mask, ints); out_be32(&hw->int_mask, ints);
} }
return ret; return ret;
} }
...@@ -1454,15 +1458,15 @@ static int allocate_buf(struct device *dev, struct diu_addr *buf, u32 size, ...@@ -1454,15 +1458,15 @@ static int allocate_buf(struct device *dev, struct diu_addr *buf, u32 size,
buf->paddr = (u32)buf->paddr + offset; buf->paddr = (u32)buf->paddr + offset;
} else } else
buf->offset = 0; buf->offset = 0;
return 0; return 0;
} }
static void free_buf(struct device *dev, struct diu_addr *buf, u32 size, static void free_buf(struct device *dev, struct diu_addr *buf, u32 size,
u32 bytes_align) u32 bytes_align)
{ {
dma_free_coherent(dev, size + bytes_align, dma_free_coherent(dev, size + bytes_align, buf->vaddr,
buf->vaddr, (buf->paddr - buf->offset)); buf->paddr - buf->offset);
return;
} }
static ssize_t store_monitor(struct device *device, static ssize_t store_monitor(struct device *device,
...@@ -1798,8 +1802,9 @@ static int __init fsl_diu_init(void) ...@@ -1798,8 +1802,9 @@ static int __init fsl_diu_init(void)
return -ENODEV; return -ENODEV;
} }
/* Freescale PLRU requires 13/8 times the cache size to do a proper /*
displacement flush * Freescale PLRU requires 13/8 times the cache size to do a proper
* displacement flush
*/ */
coherence_data_size = *prop * 13; coherence_data_size = *prop * 13;
coherence_data_size /= 8; coherence_data_size /= 8;
...@@ -1816,6 +1821,7 @@ static int __init fsl_diu_init(void) ...@@ -1816,6 +1821,7 @@ static int __init fsl_diu_init(void)
if (!coherence_data) if (!coherence_data)
return -ENOMEM; return -ENOMEM;
#endif #endif
ret = platform_driver_register(&fsl_diu_driver); ret = platform_driver_register(&fsl_diu_driver);
if (ret) { if (ret) {
printk(KERN_ERR printk(KERN_ERR
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册