Commit 315310ec authored by Art Haas's avatar Art Haas Committed by Trond Myklebust

[PATCH] designated initializer patch for usb_media_se401.c

  Here's a patch for additional designated initializer changes
  in usb/media/se401.c. Patch is against 2.5.27.
parent e5069f51
......@@ -1521,10 +1521,10 @@ static inline void usb_se401_remove_disconnected (struct usb_se401 *se401)
}
static struct usb_driver se401_driver = {
name: "se401",
id_table: device_table,
.name = "se401",
.id_table = device_table,
.probe = se401_probe,
disconnect: se401_disconnect
.disconnect = se401_disconnect
};
......
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