uncompress patches, requested by Kaloz
[openwrt/svn-archive/archive.git] / openwrt / package / linux / kernel-patches / 011-arch_mips_kernel_setup_c
1 --- linux-mips-cvs/arch/mips/kernel/setup.c 2005-01-13 22:15:57.000000000 +0100
2 +++ linux-broadcom/arch/mips/kernel/setup.c 2005-01-31 13:13:14.000000000 +0100
3 @@ -493,6 +493,7 @@
4 void swarm_setup(void);
5 void hp_setup(void);
6 void au1x00_setup(void);
7 + void brcm_setup(void);
8 void frame_info_init(void);
9
10 frame_info_init();
11 @@ -691,6 +692,11 @@
12 pmc_yosemite_setup();
13 break;
14 #endif
15 +#if defined(CONFIG_BCM4710) || defined(CONFIG_BCM4310)
16 + case MACH_GROUP_BRCM:
17 + brcm_setup();
18 + break;
19 +#endif
20 default:
21 panic("Unsupported architecture");
22 }