diff options
| author | Art Haas <ahaas@neosoft.com> | 2002-07-25 21:00:34 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <greg@kroah.com> | 2002-07-25 21:00:34 -0700 |
| commit | 75162c88a2660bb0321eb4dcb2e5b9e459cb73b9 (patch) | |
| tree | cbf9ad0d7d2c9d8da0f1155b51a22fd3b6a0b7c0 /drivers/usb/input | |
| parent | d531d3a3583c8f10f3c52bc93fae7dbf91b46138 (diff) | |
[PATCH] designated initializer patch for drivers_usb_input_wacom.c
Here's a patch for extra designated initializer conversions in
drivers/usb/input/wacom.c. Patch is against 2.5.27.
Diffstat (limited to 'drivers/usb/input')
| -rw-r--r-- | drivers/usb/input/wacom.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/usb/input/wacom.c b/drivers/usb/input/wacom.c index e4a3b59f5668..b204affb8954 100644 --- a/drivers/usb/input/wacom.c +++ b/drivers/usb/input/wacom.c @@ -321,13 +321,13 @@ struct wacom_features wacom_features[] = { }; struct usb_device_id wacom_ids[] = { - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x10), driver_info: 0 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x20), driver_info: 1 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x21), driver_info: 2 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x22), driver_info: 3 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x23), driver_info: 4 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x24), driver_info: 5 }, - { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), driver_info: 6 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x10), .driver_info = 0 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x20), .driver_info = 1 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x21), .driver_info = 2 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x22), .driver_info = 3 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x23), .driver_info = 4 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x24), .driver_info = 5 }, + { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), .driver_info = 6 }, { } }; |
