X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=target%2Flinux%2Framips%2Ffiles%2Farch%2Fmips%2Fralink%2Frt305x%2Fprom.c;h=774291ab7908b1e4fdfc53441cd90f0d33058da8;hp=8f5ddf2002597784c49479a209e60cb5e013de8c;hb=298202afb8c19917b1f74968388d6093b675be25;hpb=aec7426483c0ac4682b83f26e347c93b64833c17 diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/prom.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/prom.c index 8f5ddf2002..774291ab79 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/prom.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/prom.c @@ -14,14 +14,13 @@ #include #include +#include #include #include -#include "machine.h" - struct board_rec { char *name; - enum rt305x_mach_type mach_type; + enum ramips_mach_type mach_type; }; static int rt305x_prom_argc __initdata; @@ -31,7 +30,7 @@ static char **rt305x_prom_envp __initdata; static struct board_rec boards[] __initdata = { { .name = "WHR-G300N", - .mach_type = RT305X_MACH_WHR_G300N, + .mach_type = RAMIPS_MACH_WHR_G300N, } }; @@ -113,11 +112,9 @@ static __init void find_board_byname(char *name) { int i; - rt305x_mach = RT305X_MACH_GENERIC; - for (i = 0; i < ARRAY_SIZE(boards); i++) if (strcmp(name, boards[i].name) == 0) { - rt305x_mach = boards[i].mach_type; + ramips_mach = boards[i].mach_type; break; } }