2004-01-24 08:03:13

by Bryan Whitehead

[permalink] [raw]
Subject: [PATCH 2.6.2-rc1-mm2] drivers/net/tulip/tulip_core.c


This fixes a warning if CONFIG_NET_POLL_CONTROLLER is NOT set.

--- drivers/net/tulip/tulip_core.c.orig 2004-01-23 23:53:17.484261904 -0800
+++ drivers/net/tulip/tulip_core.c 2004-01-23 23:53:53.675759960 -0800
@@ -253,7 +253,9 @@
static struct net_device_stats *tulip_get_stats(struct net_device *dev);
static int private_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
static void set_rx_mode(struct net_device *dev);
+#ifdef CONFIG_NET_POLL_CONTROLLER
static void poll_tulip(struct net_device *dev);
+#endif


static void tulip_set_power_state (struct tulip_private *tp,

--
Bryan Whitehead
[email protected]


2004-01-24 21:17:30

by Jeff Garzik

[permalink] [raw]
Subject: Re: [PATCH 2.6.2-rc1-mm2] drivers/net/tulip/tulip_core.c

Bryan Whitehead wrote:
> This fixes a warning if CONFIG_NET_POLL_CONTROLLER is NOT set.
>
> --- drivers/net/tulip/tulip_core.c.orig 2004-01-23 23:53:17.484261904 -0800
> +++ drivers/net/tulip/tulip_core.c 2004-01-23 23:53:53.675759960 -0800
> @@ -253,7 +253,9 @@
> static struct net_device_stats *tulip_get_stats(struct net_device *dev);
> static int private_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
> static void set_rx_mode(struct net_device *dev);
> +#ifdef CONFIG_NET_POLL_CONTROLLER
> static void poll_tulip(struct net_device *dev);
> +#endif


Hum... doesn't apply here, and also it breaks my automated
"patch -sp1 < patch" script :/


2004-01-25 00:49:14

by Bryan Whitehead

[permalink] [raw]
Subject: Re: [PATCH 2.6.2-rc1-mm2] drivers/net/tulip/tulip_core.c

You needed -p0 or I'm still on crack and don't know how to diff... Either
way let me know...

This should work for patch -sp1:
--- linux-2.6.2-rc1-mm2/drivers/net/tulip/tulip_core.c.orig 2004-01-24
16:41:06.799528688 -0800
+++ linux-2.6.2-rc1-mm2/drivers/net/tulip/tulip_core.c 2004-01-24
16:40:14.521476160 -0800
@@ -246,21 +246,23 @@
static void tulip_tx_timeout(struct net_device *dev);
static void tulip_init_ring(struct net_device *dev);
static int tulip_start_xmit(struct sk_buff *skb, struct net_device *dev);
static int tulip_open(struct net_device *dev);
static int tulip_close(struct net_device *dev);
static void tulip_up(struct net_device *dev);
static void tulip_down(struct net_device *dev);
static struct net_device_stats *tulip_get_stats(struct net_device *dev);
static int private_ioctl(struct net_device *dev, struct ifreq *rq, int
cmd);
static void set_rx_mode(struct net_device *dev);
+#ifdef CONFIG_NET_POLL_CONTROLLER
static void poll_tulip(struct net_device *dev);
+#endif


static void tulip_set_power_state (struct tulip_private *tp,
int sleep, int snooze)
{
if (tp->flags & HAS_ACPI) {
u32 tmp, newtmp;
pci_read_config_dword (tp->pdev, CFDD, &tmp);
newtmp = tmp & ~(CFDD_Sleep | CFDD_Snooze);
if (sleep)


On Sat, 24 Jan 2004, Jeff Garzik wrote:

> Bryan Whitehead wrote:
> > This fixes a warning if CONFIG_NET_POLL_CONTROLLER is NOT set.
> >
> > --- drivers/net/tulip/tulip_core.c.orig 2004-01-23 23:53:17.484261904 -0800
> > +++ drivers/net/tulip/tulip_core.c 2004-01-23 23:53:53.675759960 -0800
> > @@ -253,7 +253,9 @@
> > static struct net_device_stats *tulip_get_stats(struct net_device *dev);
> > static int private_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
> > static void set_rx_mode(struct net_device *dev);
> > +#ifdef CONFIG_NET_POLL_CONTROLLER
> > static void poll_tulip(struct net_device *dev);
> > +#endif
>
>
> Hum... doesn't apply here, and also it breaks my automated
> "patch -sp1 < patch" script :/
>
>

--
Bryan Whitehead
Email:[email protected]
WorkE:[email protected]