From: Devendra Naga Date: Thu, 6 Sep 2012 18:38:02 +0000 (+0530) Subject: staging: vt6655: fix coding style warnings X-Git-Tag: v3.7-rc1~173^2~512 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3ac9e0fd2a7fcd4eccbb79909b421b4284ed9520;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git staging: vt6655: fix coding style warnings a) replace spaces with tabs b) put the opening brace of get_chip_name below it Signed-off-by: Devendra Naga Acked-by: Marcos Paulo de Souza Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c index 697617f..e0a9c08 100644 --- a/drivers/staging/vt6655/device_main.c +++ b/drivers/staging/vt6655/device_main.c @@ -347,21 +347,22 @@ static int Config_FileGetParameter(unsigned char *string, -static char* get_chip_name(int chip_id) { - int i; - for (i=0;chip_info_table[i].name!=NULL;i++) - if (chip_info_table[i].chip_id==chip_id) - break; - return chip_info_table[i].name; +static char* get_chip_name(int chip_id) +{ + int i; + for (i = 0; chip_info_table[i].name != NULL; i++) + if (chip_info_table[i].chip_id == chip_id) + break; + return chip_info_table[i].name; } static void __devexit vt6655_remove(struct pci_dev *pcid) { - PSDevice pDevice=pci_get_drvdata(pcid); + PSDevice pDevice = pci_get_drvdata(pcid); - if (pDevice==NULL) - return; - device_free_info(pDevice); + if (pDevice == NULL) + return; + device_free_info(pDevice); }