diff options
author | Jonas Gorski <jogo@openwrt.org> | 2013-05-02 15:31:02 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2013-05-02 15:31:02 +0000 |
commit | 9d82f68e14f2ff2b25a40d05d0c7a38d623d0b3a (patch) | |
tree | 136493963dd00b65df38018600ff2175a8057797 | |
parent | f1348b36aace39f8399bcc2f65ad6a7168c1de48 (diff) | |
download | upstream-9d82f68e14f2ff2b25a40d05d0c7a38d623d0b3a.tar.gz upstream-9d82f68e14f2ff2b25a40d05d0c7a38d623d0b3a.tar.bz2 upstream-9d82f68e14f2ff2b25a40d05d0c7a38d623d0b3a.zip |
AA: bcm63xx: fix/enable livebox minipci
Enable the livebox-1 minipci, otherwise, the board won't detect
any device connected on it (included wifi cards).
I've made a patch against current AA svn. I didn't notice this issue
earlier since I'm currently using CFE on this board. It's just a missed
line.
Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/branches/attitude_adjustment@36528 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/brcm63xx/patches-3.3/513-board_livebox.patch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/patches-3.3/513-board_livebox.patch b/target/linux/brcm63xx/patches-3.3/513-board_livebox.patch index dc53d481bb..cb753f34f4 100644 --- a/target/linux/brcm63xx/patches-3.3/513-board_livebox.patch +++ b/target/linux/brcm63xx/patches-3.3/513-board_livebox.patch @@ -20,7 +20,7 @@ ccflags-y := -Werror --- /dev/null +++ b/arch/mips/bcm63xx/boards/board_livebox.c -@@ -0,0 +1,368 @@ +@@ -0,0 +1,369 @@ +/* + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive @@ -230,6 +230,7 @@ + +#ifdef CONFIG_PCI + if (board.has_pci) { ++ bcm63xx_pci_enabled = 1; + if (BCMCPU_IS_6348()) + val |= GPIO_MODE_6348_G2_PCI; + } |