net: ixp4xx_hss: add some required spaces
authorPeng Li <lipeng321@huawei.com>
Thu, 10 Jun 2021 07:20:02 +0000 (15:20 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Jun 2021 20:50:42 +0000 (13:50 -0700)
Add space required before the open parenthesis '('.
Add space required after that close brace '}'.

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wan/ixp4xx_hss.c

index d657bca..d8f1df9 100644 (file)
@@ -322,7 +322,7 @@ static DEFINE_SPINLOCK(npe_lock);
 
 static const struct {
        int tx, txdone, rx, rxfree;
-}queue_ids[2] = {{HSS0_PKT_TX0_QUEUE, HSS0_PKT_TXDONE_QUEUE, HSS0_PKT_RX_QUEUE,
+} queue_ids[2] = {{HSS0_PKT_TX0_QUEUE, HSS0_PKT_TXDONE_QUEUE, HSS0_PKT_RX_QUEUE,
                  HSS0_PKT_RXFREE0_QUEUE},
                 {HSS1_PKT_TX0_QUEUE, HSS1_PKT_TXDONE_QUEUE, HSS1_PKT_RX_QUEUE,
                  HSS1_PKT_RXFREE0_QUEUE},
@@ -1177,7 +1177,7 @@ static int hss_hdlc_attach(struct net_device *dev, unsigned short encoding,
        if (encoding != ENCODING_NRZ)
                return -EINVAL;
 
-       switch(parity) {
+       switch (parity) {
        case PARITY_CRC16_PR1_CCITT:
                port->hdlc_cfg = 0;
                return 0;
@@ -1264,7 +1264,7 @@ static int hss_hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
        if (cmd != SIOCWANDEV)
                return hdlc_ioctl(dev, ifr, cmd);
 
-       switch(ifr->ifr_settings.type) {
+       switch (ifr->ifr_settings.type) {
        case IF_GET_IFACE:
                ifr->ifr_settings.type = IF_IFACE_V35;
                if (ifr->ifr_settings.size < size) {
@@ -1281,7 +1281,7 @@ static int hss_hdlc_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
 
        case IF_IFACE_SYNC_SERIAL:
        case IF_IFACE_V35:
-               if(!capable(CAP_NET_ADMIN))
+               if (!capable(CAP_NET_ADMIN))
                        return -EPERM;
                if (copy_from_user(&new_line, line, size))
                        return -EFAULT;