Commit 32ed4506 authored by Geordan Neukum's avatar Geordan Neukum Committed by Greg Kroah-Hartman

staging: kpc2000: kpc_spi: column-align switch and subordinate cases

The linux style guide prescribes that switch statements and their
subordinate case labels should be column-aligned rather than
double-indenting the case label. Make kpc2000_spi.c follow the desired
style with respect to switch/case alignment.
Signed-off-by: default avatarGeordan Neukum <gneukum1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4d632cdb
...@@ -502,13 +502,13 @@ kp_spi_probe(struct platform_device *pldev) ...@@ -502,13 +502,13 @@ kp_spi_probe(struct platform_device *pldev)
} }
switch ((drvdata->card_id & 0xFFFF0000) >> 16){ switch ((drvdata->card_id & 0xFFFF0000) >> 16){
case PCI_DEVICE_ID_DAKTRONICS_KADOKA_P2KR0: case PCI_DEVICE_ID_DAKTRONICS_KADOKA_P2KR0:
NEW_SPI_DEVICE_FROM_BOARD_INFO_TABLE(p2kr0_board_info); NEW_SPI_DEVICE_FROM_BOARD_INFO_TABLE(p2kr0_board_info);
break; break;
default: default:
dev_err(&pldev->dev, "Unknown hardware, cant know what partition table to use!\n"); dev_err(&pldev->dev, "Unknown hardware, cant know what partition table to use!\n");
goto free_master; goto free_master;
break; break;
} }
return status; return status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment