add chaos_calmer branch
[15.05/openwrt.git] / package / boot / uboot-kirkwood / patches / 0002-kirkwood-define-empty-CONFIG_MVGBE_PORTS-by-default.patch
1 From 292d4cf9257921912e8ea352687c977208e7553d Mon Sep 17 00:00:00 2001
2 From: Luka Perkov <luka@openwrt.org>
3 Date: Mon, 11 Nov 2013 07:27:53 +0100
4 Subject: [PATCH 2/9] kirkwood: define empty CONFIG_MVGBE_PORTS by default
5
6 Each board with defines it's own set of values. If we do not define
7 CONFIG_MVGBE_PORTS we will hit following error:
8
9 mvgbe.c: In function 'mvgbe_initialize':
10 mvgbe.c:700:34: error: 'CONFIG_MVGBE_PORTS' undeclared (first use in this function)
11   u8 used_ports[MAX_MVGBE_DEVS] = CONFIG_MVGBE_PORTS;
12
13 This patch fixes above described problem.
14
15 Signed-off-by: Luka Perkov <luka@openwrt.org>
16 ---
17  drivers/net/mvgbe.c | 4 ++++
18  1 file changed, 4 insertions(+)
19
20 --- a/drivers/net/mvgbe.c
21 +++ b/drivers/net/mvgbe.c
22 @@ -35,6 +35,10 @@
23  
24  DECLARE_GLOBAL_DATA_PTR;
25  
26 +#ifndef CONFIG_MVGBE_PORTS
27 +# define CONFIG_MVGBE_PORTS {0, 0}
28 +#endif
29 +
30  #define MV_PHY_ADR_REQUEST 0xee
31  #define MVGBE_SMI_REG (((struct mvgbe_registers *)MVGBE0_BASE)->smi)
32