Skip to content

Commit

Permalink
Staging: comedi: vmk80xx: cleanup formatting
Browse files Browse the repository at this point in the history
Clean up formatting of a struct initializer, as per the
standard conventions.

Signed-off-by: Bruce Jones <brucej@linux.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Bruce Jones authored and Greg Kroah-Hartman committed Dec 11, 2009
1 parent 3c9cd61 commit 6dd60bc
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions drivers/staging/comedi/drivers/vmk80xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ enum {
};

static struct usb_device_id vmk80xx_id_table[] = {
{USB_DEVICE(0x10cf, 0x5500),.driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5501),.driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5502),.driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5503),.driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x8061),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8062),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8063),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8064),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8065),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8066),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8067),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8068),.driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x5500), .driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5501), .driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5502), .driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x5503), .driver_info = DEVICE_VMK8055},
{USB_DEVICE(0x10cf, 0x8061), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8062), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8063), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8064), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8065), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8066), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8067), .driver_info = DEVICE_VMK8061},
{USB_DEVICE(0x10cf, 0x8068), .driver_info = DEVICE_VMK8061},
{} /* terminating entry */
};

Expand Down

0 comments on commit 6dd60bc

Please sign in to comment.