Commit 77b07e8e authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] c99 struct initialisers for AMD8111e driver.

parent f053b410
......@@ -1940,12 +1940,12 @@ static int __devinit amd8111e_probe_one(struct pci_dev *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)
......
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