summaryrefslogtreecommitdiffstats
path: root/board/tqc/tqm8260/tqm8260.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/tqc/tqm8260/tqm8260.c')
-rw-r--r--board/tqc/tqm8260/tqm8260.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/tqc/tqm8260/tqm8260.c b/board/tqc/tqm8260/tqm8260.c
index 95073b8446..65a3174ec6 100644
--- a/board/tqc/tqm8260/tqm8260.c
+++ b/board/tqc/tqm8260/tqm8260.c
@@ -195,17 +195,17 @@ const iop_conf_t iop_conf_tab[4][32] = {
*/
int checkboard (void)
{
- char str[64];
- int i = getenv_f("serial#", str, sizeof (str));
+ char buf[64];
+ int i = getenv_f("serial#", buf, sizeof(buf));
puts ("Board: ");
- if (!i || strncmp (str, "TQM82", 5)) {
+ if (i < 0 || strncmp(buf, "TQM82", 5)) {
puts ("### No HW ID - assuming TQM8260\n");
return (0);
}
- puts (str);
+ puts (buf);
putc ('\n');
return 0;
OpenPOWER on IntegriCloud