[PATCH] Staging: cxt1e1: Fix build error

From: Javier Martinez Canillas
Date: Sun May 02 2010 - 11:57:14 EST


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@xxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/