Skip to content

Commit

Permalink
Blackfin arch: fix typo in early printk bit size processing
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Jan 7, 2009
1 parent 4934540 commit 09b7f4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/blackfin/kernel/early_printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ static struct console * __init earlyserial_init(char *buf)
cflag |= CS5;
break;
case 6:
cflag |= CS5;
cflag |= CS6;
break;
case 7:
cflag |= CS5;
cflag |= CS7;
break;
default:
cflag |= CS8;
Expand Down

0 comments on commit 09b7f4a

Please sign in to comment.