Skip to content

Commit

Permalink
atm: iphase: fix newline escape and minor tweak to source formatting
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Colin Ian King authored and davem330 committed Sep 15, 2016
1 parent bed806c commit d560846
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/atm/iphase.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 supportedn");
} else {
printk("iadev: Non UBR, ABR and CBR traffic not supported\n");
}

iadev->testTable[vcc->vci]->vc_status |= VC_ACTIVE;
IF_EVENT(printk("ia open_tx returning \n");)
Expand Down

0 comments on commit d560846

Please sign in to comment.