[2.5 patch] fix compile breakage in drivers/net/arcnet/com20020-pci.c

From: Adrian Bunk (bunk@fs.tum.de)
Date: Mon Nov 18 2002 - 08:10:14 EST


Hi Matthew,
 
could you check whether the patch below that does a name -> dev.name to
fix the following compile error in 2.5.48 is correct?

<-- snip -->

...
  gcc -Wp,-MD,drivers/net/arcnet/.com20020-pci.o.d -D__KERNEL__ -Iinclude -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=k6 -Iarch/i386/mach-generic -nostdinc -iwithprefix include -DKBUILD_BASENAME=com20020_pci -DKBUILD_MODNAME=com20020_pci -c -o drivers/net/arcnet/com20020-pci.o drivers/net/arcnet/com20020-pci.c
drivers/net/arcnet/com20020-pci.c: In function `com20020pci_probe':
drivers/net/arcnet/com20020-pci.c:93: structure has no member named `name'
make[3]: *** [drivers/net/arcnet/com20020-pci.o] Error 1

<-- snip -->

TIA
Adrian

--- linux-2.5.48/drivers/net/arcnet/com20020-pci.c.old 2002-11-18 14:02:51.000000000 +0100
+++ linux-2.5.48/drivers/net/arcnet/com20020-pci.c 2002-11-18 14:03:06.000000000 +0100
@@ -90,7 +90,7 @@
         dev->base_addr = ioaddr;
         dev->irq = pdev->irq;
         dev->dev_addr[0] = node;
- lp->card_name = pdev->name;
+ lp->card_name = pdev->dev.name;
         lp->card_flags = id->driver_data;
         lp->backplane = backplane;
         lp->clockp = clockp & 7;
-
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/



This archive was generated by hypermail 2b29 : Sat Nov 23 2002 - 22:00:22 EST