Messages in this thread Patch in this message |  | | | Subject | [PATCH] Staging: cxt1e1: Fix build error | | From | Javier Martinez Canillas <> | | Date | Sun, 02 May 2010 11:56:53 -0400 |
| |
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@gmail.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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |