public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] c99 struct initialisers for AMD8111e driver.
@ 2003-08-11 13:40 davej
  0 siblings, 0 replies; only message in thread
From: davej @ 2003-08-11 13:40 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel, jgarzik

diff -urpN --exclude-from=/home/davej/.exclude bk-linus/drivers/net/amd8111e.c linux-2.5/drivers/net/amd8111e.c
--- bk-linus/drivers/net/amd8111e.c	2003-08-04 01:00:26.000000000 +0100
+++ linux-2.5/drivers/net/amd8111e.c	2003-08-06 18:59:37.000000000 +0100
@@ -1940,12 +1940,12 @@ err_disable_pdev:
 }
 
 static struct pci_driver amd8111e_driver = {
-	name:		MODULE_NAME,
-	id_table:	amd8111e_pci_tbl,
-	probe:		amd8111e_probe_one,
-	remove:		__devexit_p(amd8111e_remove_one),
-	suspend:	amd8111e_suspend,
-	resume:		amd8111e_resume
+	.name		= MODULE_NAME,
+	.id_table	= amd8111e_pci_tbl,
+	.probe		= amd8111e_probe_one,
+	.remove		= __devexit_p(amd8111e_remove_one),
+	.suspend	= amd8111e_suspend,
+	.resume		= amd8111e_resume
 };
 
 static int __init amd8111e_init(void)

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

only message in thread, other threads:[~2003-08-11 14:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-11 13:40 [PATCH] c99 struct initialisers for AMD8111e driver davej

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