diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-02-20 19:59:22 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2011-02-20 19:59:22 +0000 |
commit | 94a22b91fc2acb3d28882c4660d0a7505a9b5d2e (patch) | |
tree | 6e86ad37d505b7be2c195f726d5d0997724c4168 /target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch | |
parent | 7f75ed29399b99d7e28936c7551fb7be277676d6 (diff) | |
download | upstream-94a22b91fc2acb3d28882c4660d0a7505a9b5d2e.tar.gz upstream-94a22b91fc2acb3d28882c4660d0a7505a9b5d2e.tar.bz2 upstream-94a22b91fc2acb3d28882c4660d0a7505a9b5d2e.zip |
add support for 2.6.37, patches from KanjiMonster
SVN-Revision: 25629
Diffstat (limited to 'target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch')
-rw-r--r-- | target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch b/target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch new file mode 100644 index 0000000000..aa7322d9e5 --- /dev/null +++ b/target/linux/brcm63xx/patches-2.6.37/300-wl_exports.patch @@ -0,0 +1,34 @@ +--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c ++++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c +@@ -49,6 +49,13 @@ static unsigned int mac_addr_used; + static struct board_info board; + + /* ++ * Required export for WL ++ */ ++#define NVRAM_SPACE 0x8000 ++char nvram_buf[NVRAM_SPACE]; ++EXPORT_SYMBOL(nvram_buf); ++ ++/* + * known 6338 boards + */ + #ifdef CONFIG_BCM63XX_CPU_6338 +@@ -1444,6 +1451,7 @@ void __init board_prom_init(void) + + /* extract nvram data */ + memcpy(&nvram, boot_addr + BCM963XX_NVRAM_OFFSET, sizeof(nvram)); ++ memcpy(&nvram_buf, boot_addr + BCM963XX_NVRAM_OFFSET, NVRAM_SPACE); + + /* check checksum before using data */ + if (nvram.version <= 4) +--- a/arch/mips/mm/cache.c ++++ b/arch/mips/mm/cache.c +@@ -52,6 +52,7 @@ void (*_dma_cache_wback)(unsigned long s + void (*_dma_cache_inv)(unsigned long start, unsigned long size); + + EXPORT_SYMBOL(_dma_cache_wback_inv); ++EXPORT_SYMBOL(_dma_cache_inv); + + #endif /* CONFIG_DMA_NONCOHERENT */ + |