1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-19 14:08:17 +02:00

kernel: b53: fix build with brcm47xx

The position of the nvram header file on brcm47xx changed with kernel
version 4.1.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

SVN-Revision: 46170
This commit is contained in:
Hauke Mehrtens 2015-07-03 23:27:21 +00:00
parent 97b14fd700
commit d0aca89c18

@ -301,7 +301,12 @@ static inline int b53_write64(struct b53_device *dev, u8 page, u8 reg,
#ifdef CONFIG_BCM47XX #ifdef CONFIG_BCM47XX
#include <linux/version.h>
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0))
#include <linux/bcm47xx_nvram.h>
#else
#include <bcm47xx_nvram.h> #include <bcm47xx_nvram.h>
#endif
#include <bcm47xx_board.h> #include <bcm47xx_board.h>
static inline int b53_switch_get_reset_gpio(struct b53_device *dev) static inline int b53_switch_get_reset_gpio(struct b53_device *dev)
{ {