> -----Original Message-----
> From: Luka Perkov [mailto:[email protected]]
> Sent: 02 July 2014 05:48
> To: [email protected]
> Cc: [email protected]; Prafulla Wadaskar; Stefan Roese
> Subject: [PATCH] kirkwood: define empty
> CONFIG_MVGBE_PORTS by default
> 
> Each board with defines it's own set of values. If we
> do not define
> CONFIG_MVGBE_PORTS we will hit following error:
> 
> mvgbe.c: In function 'mvgbe_initialize':
> mvgbe.c:700:34: error: 'CONFIG_MVGBE_PORTS' undeclared
> (first use in this function)
>   u8 used_ports[MAX_MVGBE_DEVS] = CONFIG_MVGBE_PORTS;
> 
> This patch fixes above described problem.
> 
> Signed-off-by: Luka Perkov <[email protected]>
> CC: Prafulla Wadaskar <[email protected]>
> CC: Stefan Roese <[email protected]>
> ---
>  drivers/net/mvgbe.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/net/mvgbe.c b/drivers/net/mvgbe.c
> index 0cd06b6..d558f59 100644
> --- a/drivers/net/mvgbe.c
> +++ b/drivers/net/mvgbe.c
> @@ -35,6 +35,10 @@
> 
>  DECLARE_GLOBAL_DATA_PTR;
> 
> +#ifndef CONFIG_MVGBE_PORTS
> +# define CONFIG_MVGBE_PORTS {0, 0}
> +#endif
> +
>  #define MV_PHY_ADR_REQUEST 0xee
>  #define MVGBE_SMI_REG (((struct mvgbe_registers
> *)MVGBE0_BASE)->smi)
>

This is generic to network driver, to be picked up by net custodian..

+Joe

Acked-by: Prafulla Wadaskar <[email protected]>

Regards...
Prafulla . . .
_______________________________________________
U-Boot mailing list
[email protected]
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to