Skip to content

Commit

Permalink
x86, setup: Fix earlyprintk=serial,ttyS0,115200
Browse files Browse the repository at this point in the history
Torsten reported that there is garbage output,
after commit 8fee13a (x86,
setup: enable early console output from the decompressor)

It turns out we missed the offset for that case.

Reported-by: Torsten Kaiser <just.for.lkml@googlemail.com>
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <4C7B0578.8090807@kernel.org>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
  • Loading branch information
Yinghai Lu authored and H. Peter Anvin committed Sep 21, 2010
1 parent b30a3f6 commit 83d9f65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/boot/early_serial_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static void parse_earlyprintk(void)
if (arg[pos] == ',')
pos++;

if (!strncmp(arg, "ttyS", 4)) {
if (!strncmp(arg + pos, "ttyS", 4)) {
static const int bases[] = { 0x3f8, 0x2f8 };
int idx = 0;

Expand Down

0 comments on commit 83d9f65

Please sign in to comment.