commit | 68fec9a751ee943ba1d48e5af8d68c8ff33c66d8 | [log] [tgz] |
---|---|---|
author | Sean McNeil <sean.mcneil@windriver.com> | Sat Feb 28 14:41:33 2009 +0700 |
committer | Jean-Baptiste Queru <jbq@google.com> | Tue Jul 13 14:24:39 2010 -0700 |
tree | 008071f336e4e61ce233bfd0d3433ddc55ee0127 | |
parent | bedaac52a677c152e051c17ef456cc9e43f3812b [diff] |
Use complete hardware name without spaces. Many targets use generic first portions like 'OMAP' Change-Id: I00ba4e64cffc48353c29e409c3c19238024fbd8c
diff --git a/init/init.c b/init/init.c index 4d98cc2..0667593 100755 --- a/init/init.c +++ b/init/init.c
@@ -657,8 +657,9 @@ if (x) { x += 2; n = 0; - while (*x && !isspace(*x)) { - hardware[n++] = tolower(*x); + while (*x && *x != '\n') { + if (!isspace(*x)) + hardware[n++] = tolower(*x); x++; if (n == 31) break; }