net: hd64570: add some required spaces
authorPeng Li <lipeng321@huawei.com>
Sat, 5 Jun 2021 07:00:29 +0000 (15:00 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Jun 2021 19:25:21 +0000 (12:25 -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/hd64570.c

index 8af647c..0d19e39 100644 (file)
@@ -376,7 +376,7 @@ static irqreturn_t sca_intr(int irq, void *dev_id)
        int handled = 0;
        u8 page = sca_get_page(card);
 
-       while((stat = sca_intr_status(card)) != 0) {
+       while ((stat = sca_intr_status(card)) != 0) {
                handled = 1;
                for (i = 0; i < 2; i++) {
                        port_t *port = get_port(card, i);
@@ -413,7 +413,7 @@ static void sca_set_port(port_t *port)
 
                        /* Baud Rate = CLOCK_BASE / TMC / 2^BR */
                        tmc = CLOCK_BASE / brv / port->settings.clock_rate;
-               }while (br > 1 && tmc <= 128);
+               } while (br > 1 && tmc <= 128);
 
                if (tmc < 1) {
                        tmc = 1;