net: hostess_sv11: fix the code style issue about switch and case

According to the chackpatch.pl,
switch and case should be at the same indent.

Signed-off-by: Peng Li <lipeng321@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Peng Li 2021-06-18 10:32:21 +08:00 committed by David S. Miller
parent 534f76d462
commit 9562aef3c0

View File

@ -85,15 +85,15 @@ static int hostess_open(struct net_device *d)
* Link layer up * Link layer up
*/ */
switch (dma) { switch (dma) {
case 0: case 0:
err = z8530_sync_open(d, &sv11->chanA); err = z8530_sync_open(d, &sv11->chanA);
break; break;
case 1: case 1:
err = z8530_sync_dma_open(d, &sv11->chanA); err = z8530_sync_dma_open(d, &sv11->chanA);
break; break;
case 2: case 2:
err = z8530_sync_txdma_open(d, &sv11->chanA); err = z8530_sync_txdma_open(d, &sv11->chanA);
break; break;
} }
if (err) if (err)
@ -102,15 +102,15 @@ static int hostess_open(struct net_device *d)
err = hdlc_open(d); err = hdlc_open(d);
if (err) { if (err) {
switch (dma) { switch (dma) {
case 0: case 0:
z8530_sync_close(d, &sv11->chanA); z8530_sync_close(d, &sv11->chanA);
break; break;
case 1: case 1:
z8530_sync_dma_close(d, &sv11->chanA); z8530_sync_dma_close(d, &sv11->chanA);
break; break;
case 2: case 2:
z8530_sync_txdma_close(d, &sv11->chanA); z8530_sync_txdma_close(d, &sv11->chanA);
break; break;
} }
return err; return err;
} }
@ -136,15 +136,15 @@ static int hostess_close(struct net_device *d)
netif_stop_queue(d); netif_stop_queue(d);
switch (dma) { switch (dma) {
case 0: case 0:
z8530_sync_close(d, &sv11->chanA); z8530_sync_close(d, &sv11->chanA);
break; break;
case 1: case 1:
z8530_sync_dma_close(d, &sv11->chanA); z8530_sync_dma_close(d, &sv11->chanA);
break; break;
case 2: case 2:
z8530_sync_txdma_close(d, &sv11->chanA); z8530_sync_txdma_close(d, &sv11->chanA);
break; break;
} }
return 0; return 0;
} }