diff options
| author | Devendra Naga <[email protected]> | 2012-09-07 00:08:02 +0530 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2012-09-07 22:07:37 -0700 |
| commit | 3ac9e0fd2a7fcd4eccbb79909b421b4284ed9520 (patch) | |
| tree | 71e2fcbc525ea3cf2db260eaf9f8cfb108043a68 | |
| parent | 7892e560d463a556664f82188602ab3425533049 (diff) | |
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 <[email protected]>
Acked-by: Marcos Paulo de Souza <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/vt6655/device_main.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/drivers/staging/vt6655/device_main.c b/drivers/staging/vt6655/device_main.c index 697617fdb57b..e0a9c0804261 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); } |