[PATCH] C99 initializers for drivers/net/amd8111e.c

From: Art Haas (ahaas@airmail.net)
Date: Tue Apr 22 2003 - 10:57:54 EST


Hi.

This trivial patch converts the file to use C99 initializers. The patch
is against the current BK.

Art Haas

===== drivers/net/amd8111e.c 1.3 vs edited =====
--- 1.3/drivers/net/amd8111e.c Mon Apr 21 00:41:09 2003
+++ edited/drivers/net/amd8111e.c Tue Apr 22 10:04:23 2003
@@ -1632,12 +1632,12 @@
 }
 
 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)

-- 
To announce that there must be no criticism of the President, or that we
are to stand by the President, right or wrong, is not only unpatriotic
and servile, but is morally treasonable to the American public.
 -- Theodore Roosevelt, Kansas City Star, 1918
-
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 : Wed Apr 23 2003 - 22:00:33 EST