From: Miguel Ojeda Sandonis - Minor coding style fixes Signed-off-by: Miguel Ojeda Sandonis Signed-off-by: Andrew Morton --- Documentation/auxdisplay/cfag12864b-example.c | 4 ++-- drivers/auxdisplay/cfag12864b.c | 4 ++-- drivers/auxdisplay/cfag12864bfb.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff -puN Documentation/auxdisplay/cfag12864b-example.c~drivers-add-lcd-support-update6 Documentation/auxdisplay/cfag12864b-example.c --- a/Documentation/auxdisplay/cfag12864b-example.c~drivers-add-lcd-support-update6 +++ a/Documentation/auxdisplay/cfag12864b-example.c @@ -203,7 +203,7 @@ void example(unsigned char n) unsigned short i, j; unsigned char matrix[CFAG12864B_WIDTH * CFAG12864B_HEIGHT]; - if(n > EXAMPLES) + if (n > EXAMPLES) return; printf("Example %i/%i - ", n, EXAMPLES); @@ -273,7 +273,7 @@ int main(int argc, char *argv[]) for (n = 1; n <= EXAMPLES; n++) { example(n); cfag12864b_blit(); - while(getchar() != '\n'); + while (getchar() != '\n'); } cfag12864b_exit(); diff -puN drivers/auxdisplay/cfag12864b.c~drivers-add-lcd-support-update6 drivers/auxdisplay/cfag12864b.c --- a/drivers/auxdisplay/cfag12864b.c~drivers-add-lcd-support-update6 +++ a/drivers/auxdisplay/cfag12864b.c @@ -237,7 +237,7 @@ unsigned char cfag12864b_enable(void) mutex_lock(&cfag12864b_mutex); - if(!cfag12864b_updating) { + if (!cfag12864b_updating) { cfag12864b_updating = 1; cfag12864b_queue(); ret = 0; @@ -254,7 +254,7 @@ void cfag12864b_disable(void) { mutex_lock(&cfag12864b_mutex); - if(cfag12864b_updating) { + if (cfag12864b_updating) { cfag12864b_updating = 0; cancel_delayed_work(&cfag12864b_work); flush_workqueue(cfag12864b_workqueue); diff -puN drivers/auxdisplay/cfag12864bfb.c~drivers-add-lcd-support-update6 drivers/auxdisplay/cfag12864bfb.c --- a/drivers/auxdisplay/cfag12864bfb.c~drivers-add-lcd-support-update6 +++ a/drivers/auxdisplay/cfag12864bfb.c @@ -71,7 +71,7 @@ static struct page *cfag12864bfb_vma_nop struct page *page = virt_to_page(cfag12864b_buffer); get_page(page); - if(type) + if (type) *type = VM_FAULT_MINOR; return page; @@ -156,7 +156,7 @@ static int __init cfag12864bfb_init(void { int ret; - if(cfag12864b_enable()) { + if (cfag12864b_enable()) { printk(KERN_ERR CFAG12864BFB_NAME ": ERROR: " "can't enable cfag12864b refreshing (being used)\n"); return -ENODEV; _