[U-Boot-Users] [PATCH] net: smc911x: Fix can not compile smc911x
Ben Warren
biggerbadderben at gmail.com
Mon Jun 30 19:25:40 CEST 2008
Nobuhiro,
Nice catch! Thanks.
Wolfgang/Detlev,
Please pull directly.
regards,
Ben
Nobuhiro Iwamatsu wrote:
> When enable CONFIG_DRIVER_SMC911X_16_BIT in smc911x, can not compile it.
> I revised it from "elif" preprocessor to "elif defined".
>
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
>
Acked-by: Ben Warren <biggerbadderben at gmail.com>
> ---
> drivers/net/smc911x.c | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c
> index 7555cb9..a2d3cb2 100644
> --- a/drivers/net/smc911x.c
> +++ b/drivers/net/smc911x.c
> @@ -33,7 +33,7 @@
> CONFIG_DRIVER_SMC911X_16_BIT shall be set"
> #endif
>
> -#ifdef CONFIG_DRIVER_SMC911X_32_BIT
> +#if defined (CONFIG_DRIVER_SMC911X_32_BIT)
> static inline u32 reg_read(u32 addr)
> {
> return *(volatile u32*)addr;
> @@ -42,7 +42,7 @@ static inline void reg_write(u32 addr, u32 val)
> {
> *(volatile u32*)addr = val;
> }
> -#elif CONFIG_DRIVER_SMC911X_16_BIT
> +#elif defined (CONFIG_DRIVER_SMC911X_16_BIT)
> static inline u32 reg_read(u32 addr)
> {
> volatile u16 *addr_16 = (u16 *)addr;
>
More information about the U-Boot
mailing list