public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.5 patch] fix compile breakage in drivers/net/arcnet/com20020-pci.c
@ 2002-11-18 13:10 Adrian Bunk
  0 siblings, 0 replies; only message in thread
From: Adrian Bunk @ 2002-11-18 13:10 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-kernel

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;

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-11-18 13:03 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-18 13:10 [2.5 patch] fix compile breakage in drivers/net/arcnet/com20020-pci.c Adrian Bunk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox