Some more tweaks for the ar9003 print

Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
This commit is contained in:
Luis R. Rodriguez 2010-04-20 22:32:12 -07:00
parent a6c4b83182
commit 3b5c2052a8

View file

@ -454,8 +454,15 @@ print_initvals_family(char *family)
ar9001_hw_print_initvals();
else if (strncmp(family, "ar9002", 6) == 0)
ar9002_hw_print_initvals();
else if (strncmp(family, "ar9003", 6) == 0)
else if (strncmp(family, "ar9003", 6) == 0) {
printf("#ifndef INITVALS_9003_H\n");
printf("#define INITVALS_9003_H\n");
printf("\n");
printf("/* AR9003 2.0 */\n");
printf("\n");
ar9003_hw_print_initvals();
printf("#endif /* INITVALS_9003_H */\n");
}
}
#else
print_initvals_family(char *family)