diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-06-05 13:40:35 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-06-05 13:40:35 +0000 |
commit | c349282efff8e729f0a7ed6069539da39ba9332b (patch) | |
tree | cf23951ffeed59064107d1c504939e884c31a91b /target/linux | |
parent | 266c70cdf4011503ad2a3cbad088526a6df67107 (diff) | |
download | upstream-c349282efff8e729f0a7ed6069539da39ba9332b.tar.gz upstream-c349282efff8e729f0a7ed6069539da39ba9332b.tar.bz2 upstream-c349282efff8e729f0a7ed6069539da39ba9332b.zip |
[brcm63xx] fix bisectability of patch 303-spi-board-info.patch
It uses spi_register_board_info() from linux/spi/spi.h but does not include it
explicitely.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32058 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch b/target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch index ce5171386a..41ceaf7234 100644 --- a/target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch +++ b/target/linux/brcm63xx/patches-3.3/303-spi-board-info.patch @@ -1,6 +1,14 @@ --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c -@@ -933,6 +933,9 @@ int __init board_register_devices(void) +@@ -17,6 +17,7 @@ + #include <linux/ssb/ssb.h> + #include <linux/gpio_keys.h> + #include <linux/input.h> ++#include <linux/spi/spi.h> + #include <asm/addrspace.h> + #include <bcm63xx_board.h> + #include <bcm63xx_cpu.h> +@@ -933,6 +934,9 @@ int __init board_register_devices(void) if (board.num_devs) platform_add_devices(board.devs, board.num_devs); |