Commit 34381c22 authored by Peter Huewe's avatar Peter Huewe Committed by Greg Kroah-Hartman

staging/vt6655: fix sparse warning "obsolete struct initializer"

This patch fixes the sparse warnings
"obsolete struct initializer, use C99 syntax" in vt6655/device_main.c
by converting the struct to C99 syntax

KernelVersion: linux-next-20110110
Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent eb839392
...@@ -312,9 +312,9 @@ static int device_notify_reboot(struct notifier_block *, unsigned long event, vo ...@@ -312,9 +312,9 @@ static int device_notify_reboot(struct notifier_block *, unsigned long event, vo
static int viawget_suspend(struct pci_dev *pcid, pm_message_t state); static int viawget_suspend(struct pci_dev *pcid, pm_message_t state);
static int viawget_resume(struct pci_dev *pcid); static int viawget_resume(struct pci_dev *pcid);
struct notifier_block device_notifier = { struct notifier_block device_notifier = {
notifier_call: device_notify_reboot, .notifier_call = device_notify_reboot,
next: NULL, .next = NULL,
priority: 0 .priority = 0,
}; };
#endif #endif
...@@ -3606,13 +3606,13 @@ static int ethtool_ioctl(struct net_device *dev, void *useraddr) ...@@ -3606,13 +3606,13 @@ static int ethtool_ioctl(struct net_device *dev, void *useraddr)
MODULE_DEVICE_TABLE(pci, vt6655_pci_id_table); MODULE_DEVICE_TABLE(pci, vt6655_pci_id_table);
static struct pci_driver device_driver = { static struct pci_driver device_driver = {
name: DEVICE_NAME, .name = DEVICE_NAME,
id_table: vt6655_pci_id_table, .id_table = vt6655_pci_id_table,
probe: vt6655_probe, .probe = vt6655_probe,
remove: vt6655_remove, .remove = vt6655_remove,
#ifdef CONFIG_PM #ifdef CONFIG_PM
suspend: viawget_suspend, .suspend = viawget_suspend,
resume: viawget_resume, .resume = viawget_resume,
#endif #endif
}; };
......
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