Commit d560846e authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

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: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent bed806cb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1885,9 +1885,9 @@ static int open_tx(struct atm_vcc *vcc)
                if ((ret = ia_cbr_setup (iadev, vcc)) < 0) {     
                    return ret;
                }
	} else {
		printk("iadev:  Non UBR, ABR and CBR traffic not supported\n");
	}
	else  
           printk("iadev:  Non UBR, ABR and CBR traffic not supportedn"); 
        
        iadev->testTable[vcc->vci]->vc_status |= VC_ACTIVE;
	IF_EVENT(printk("ia open_tx returning \n");)