From: Rehas Sachdeva Date: Thu, 15 Sep 2016 19:14:38 +0000 (+0530) Subject: staging: slicoss: Remove blank lines before & after braces X-Git-Tag: v4.9-rc1~119^2~579 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1462b30786e336d73251e6c102e2ad92abc23b4a;p=karo-tx-linux.git staging: slicoss: Remove blank lines before & after braces Removes unnecessary blank lines after an opening brace '{' and before a closing brace '}'. Issue detected by checkpatch.pl. Signed-off-by: Rehas Sachdeva Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/slicoss/slicoss.c b/drivers/staging/slicoss/slicoss.c index a5dd75a08040..81297caec536 100644 --- a/drivers/staging/slicoss/slicoss.c +++ b/drivers/staging/slicoss/slicoss.c @@ -514,7 +514,6 @@ static int slic_card_download(struct adapter *adapter) slic_write32(adapter, SLIC_REG_WCS, instruction); instruction = *(u32 *)(fw->data + index); index += 4; - } } release_firmware(fw); @@ -2717,7 +2716,6 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter) /* see if the EEPROM is valid by checking it's checksum */ if ((eecodesize <= MAX_EECODE_SIZE) && (eecodesize >= MIN_EECODE_SIZE)) { - ee_chksum = *(u16 *)((char *)peeprom + (eecodesize - 2)); /* @@ -2855,7 +2853,6 @@ static int slic_init_adapter(struct net_device *netdev, */ for (index = 1, pslic_handle = &adapter->slic_handles[1]; index < SLIC_CMDQ_MAXCMDS; index++, pslic_handle++) { - pslic_handle->token.handle_index = index; pslic_handle->type = SLIC_HANDLE_FREE; pslic_handle->next = adapter->pfree_slic_handles;