mirror of
https://github.com/qca/qca-swiss-army-knife.git
synced 2026-01-27 17:07:18 +01:00
Some more tweaks for the ar9003 print
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
This commit is contained in:
parent
a6c4b83182
commit
3b5c2052a8
1 changed files with 8 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue