[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1272815813.16886.5.camel@lenovo>
Date: Sun, 02 May 2010 11:56:53 -0400
From: Javier Martinez Canillas <martinez.javier@...il.com>
To: Greg Kroah-Hartman <gregkh@...e.de>,
Bob Beers <bob.beers@...il.com>, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] Staging: cxt1e1: Fix build error
With today linux-next I got this compilation error:
drivers/staging/cxt1e1/linux.c: In function ‘c4_add_dev’:
drivers/staging/cxt1e1/linux.c:1195: error: ‘struct net_device’ has no member named ‘priv’
I think this patch solves the issue
Signed-off-by: Javier Martinez Canillas <martinez.javier@...il.com>
---
drivers/staging/cxt1e1/linux.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/staging/cxt1e1/linux.c b/drivers/staging/cxt1e1/linux.c
index 23e184d..d8ef006 100644
--- a/drivers/staging/cxt1e1/linux.c
+++ b/drivers/staging/cxt1e1/linux.c
@@ -1192,7 +1192,7 @@ c4_add_dev (hdw_info_t * hi, int brdno, unsigned long f0, unsigned long f1,
hi->devname, irq1);
unregister_netdev (ndev);
free_irq (irq0, ndev);
- OS_kfree (ndev->priv);
+ OS_kfree(netdev_priv(ndev));
OS_kfree (ndev);
error_flag = EIO;
return 0;
--
1.7.0.4
--
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