Commit 75162c88 authored by Art Haas's avatar Art Haas Committed by Greg Kroah-Hartman

[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.
parent d531d3a3
...@@ -321,13 +321,13 @@ struct wacom_features wacom_features[] = { ...@@ -321,13 +321,13 @@ struct wacom_features wacom_features[] = {
}; };
struct usb_device_id wacom_ids[] = { struct usb_device_id wacom_ids[] = {
{ USB_DEVICE(USB_VENDOR_ID_WACOM, 0x10), driver_info: 0 }, { 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, 0x20), .driver_info = 1 },
{ USB_DEVICE(USB_VENDOR_ID_WACOM, 0x21), driver_info: 2 }, { 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, 0x22), .driver_info = 3 },
{ USB_DEVICE(USB_VENDOR_ID_WACOM, 0x23), driver_info: 4 }, { 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, 0x24), .driver_info = 5 },
{ USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), driver_info: 6 }, { USB_DEVICE(USB_VENDOR_ID_WACOM, 0x31), .driver_info = 6 },
{ } { }
}; };
......
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