[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <21849002.1218843677714.JavaMail.oracle@acsmt301.oracle.com>
Date: Fri, 15 Aug 2008 18:41:17 -0500 (CDT)
From: Randy Dunlap <randy.dunlap@...cle.com>
To: David Miller <davem@...emloft.net>
Cc: sfr@...b.auug.org.au, netdev@...r.kernel.org, mchan@...adcom.com,
linux-kernel@...r.kernel.org, linux-next@...r.kernel.org
Subject: Re: linux-next: Tree for August 15 (bnx2) [resend/lost]
--- Original Message ---
> From: Randy Dunlap <randy.dunlap@...cle.com>
> Date: Fri, 15 Aug 2008 08:41:16 -0700
>
> > When VLAN is not enabled, bnx2 build fails with:
> >
> > drivers/net/bnx2.c: In function 'bnx2_rx_int':
> > drivers/net/bnx2.c:2959: error: dereferencing pointer to incomplete type
> > drivers/net/bnx2.c:2960: error: dereferencing pointer to incomplete type
> > make[2]: *** [drivers/net/bnx2.o] Error 1
>
> Does this fix it for you?
Yes, it does. Thanks.
> diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c
> index d454810..2486a65 100644
> --- a/drivers/net/bnx2.c
> +++ b/drivers/net/bnx2.c
> @@ -35,8 +35,8 @@
> #include <linux/time.h>
> #include <linux/ethtool.h>
> #include <linux/mii.h>
> -#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
> #include <linux/if_vlan.h>
> +#if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
> #define BCM_VLAN 1
> #endif
> #include <net/ip.h>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists