Commit 6194eaf4 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

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

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

Here's a small patch changing the GNU-style initializers to C99
initializers.
parent a6e45332
......@@ -826,10 +826,10 @@ static struct pci_device_id wanxl_pci_tbl[] __devinitdata = {
static struct pci_driver wanxl_pci_driver = {
name: "wanXL",
id_table: wanxl_pci_tbl,
probe: wanxl_pci_init_one,
remove: wanxl_pci_remove_one,
.name = "wanXL",
.id_table = wanxl_pci_tbl,
.probe = wanxl_pci_init_one,
.remove = wanxl_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