staging: slicoss: fix parenthesis alignment in slicoss.c
This patch fix open parenthesis alignment matching in slicoss.c file to comply with the standard kernel coding style. Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b277b90b9e
commit
0b402c8e0d
|
@ -1764,7 +1764,8 @@ static void slic_mcast_set_list(struct net_device *dev)
|
|||
#define XMIT_FAIL_HOSTCMD_FAIL 3
|
||||
|
||||
static void slic_xmit_build_request(struct adapter *adapter,
|
||||
struct slic_hostcmd *hcmd, struct sk_buff *skb)
|
||||
struct slic_hostcmd *hcmd,
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct slic_host64_cmd *ihcmd;
|
||||
ulong phys_addr;
|
||||
|
@ -2030,12 +2031,10 @@ static void slic_interrupt_card_up(u32 isr, struct adapter *adapter,
|
|||
}
|
||||
} else if (isr & ISR_XDROP) {
|
||||
dev_err(&dev->dev,
|
||||
"isr & ISR_ERR [%x] ISR_XDROP\n",
|
||||
isr);
|
||||
"isr & ISR_ERR [%x] ISR_XDROP\n", isr);
|
||||
} else {
|
||||
dev_err(&dev->dev,
|
||||
"isr & ISR_ERR [%x]\n",
|
||||
isr);
|
||||
"isr & ISR_ERR [%x]\n", isr);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2740,8 +2739,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter)
|
|||
|
||||
/* copy the Alacritech FRU information */
|
||||
card->config.FruFormat = fruformat;
|
||||
memcpy(&card->config.AtkFru, patkfru,
|
||||
sizeof(struct atk_fru));
|
||||
memcpy(&card->config.AtkFru, patkfru, sizeof(struct atk_fru));
|
||||
|
||||
pci_free_consistent(adapter->pcidev,
|
||||
sizeof(struct slic_eeprom),
|
||||
|
|
Loading…
Reference in New Issue