Commit 67d5240c authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] C99 initializers for drivers/net/wan/pci200syn.c

From: "Art Haas" <ahaas@airmail.net>

Here's a small patch changing the GNU-style initializers to C99
initializers.
parent 6194eaf4
......@@ -451,10 +451,10 @@ static struct pci_device_id pci200_pci_tbl[] __devinitdata = {
static struct pci_driver pci200_pci_driver = {
name: "PCI200SYN",
id_table: pci200_pci_tbl,
probe: pci200_pci_init_one,
remove: pci200_pci_remove_one,
.name = "PCI200SYN",
.id_table = pci200_pci_tbl,
.probe = pci200_pci_init_one,
.remove = pci200_pci_remove_one,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment