aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2016-09-12 08:01:50 -0400
committerDavid S. Miller <davem@davemloft.net>2016-09-15 19:15:55 -0400
commitd560846e40fefd7b6e5c29d115f1d8f73db7f5e6 (patch)
treed5fe4bf7f6329971de6774479d4efbfa9fd3c9c8
parentbed806cb266e3853e12de892553fc29c45f9d28c (diff)
atm: iphase: fix newline escape and minor tweak to source formatting
The newline escape is incorrect and needs fixing. Also adjust source formatting / indentation and add { } to trailing else. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/atm/iphase.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c
index 9d8807e76639..b2756765950e 100644
--- a/drivers/atm/iphase.c
+++ b/drivers/atm/iphase.c
@@ -1885,9 +1885,9 @@ static int open_tx(struct atm_vcc *vcc)
1885 if ((ret = ia_cbr_setup (iadev, vcc)) < 0) { 1885 if ((ret = ia_cbr_setup (iadev, vcc)) < 0) {
1886 return ret; 1886 return ret;
1887 } 1887 }
1888 } 1888 } else {
1889 else 1889 printk("iadev: Non UBR, ABR and CBR traffic not supported\n");
1890 printk("iadev: Non UBR, ABR and CBR traffic not supportedn"); 1890 }
1891 1891
1892 iadev->testTable[vcc->vci]->vc_status |= VC_ACTIVE; 1892 iadev->testTable[vcc->vci]->vc_status |= VC_ACTIVE;
1893 IF_EVENT(printk("ia open_tx returning \n");) 1893 IF_EVENT(printk("ia open_tx returning \n");)