Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 325902
b: refs/heads/master
c: c2ec75c
h: refs/heads/master
v: v3
  • Loading branch information
Sebastian Andrzej Siewior authored and Felipe Balbi committed Sep 10, 2012
1 parent 87176a2 commit efd665c
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e1a27c3258c769ea175780bb28d0c8fead79ff8
refs/heads/master: c2ec75c25112c9e0d9053f55ba8cf0a358d4a354
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/acm_ms.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ static int __exit acm_ms_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver acm_ms_driver = {
static __refdata struct usb_composite_driver acm_ms_driver = {
.name = "g_acm_ms",
.dev = &device_desc,
.max_speed = USB_SPEED_SUPER,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ static int __exit audio_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver audio_driver = {
static __refdata struct usb_composite_driver audio_driver = {
.name = "g_audio",
.dev = &device_desc,
.strings = audio_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/cdc2.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ static int __exit cdc_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver cdc_driver = {
static __refdata struct usb_composite_driver cdc_driver = {
.name = "g_cdc",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/dbgp.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ static int dbgp_setup(struct usb_gadget *gadget,
return err;
}

static struct usb_gadget_driver dbgp_driver = {
static __refdata struct usb_gadget_driver dbgp_driver = {
.function = "dbgp",
.max_speed = USB_SPEED_HIGH,
.unbind = dbgp_unbind,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ static int __exit eth_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver eth_driver = {
static __refdata struct usb_composite_driver eth_driver = {
.name = "g_ether",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/file_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -3603,7 +3603,7 @@ static void fsg_resume(struct usb_gadget *gadget)

/*-------------------------------------------------------------------------*/

static struct usb_gadget_driver fsg_driver = {
static __refdata struct usb_gadget_driver fsg_driver = {
.max_speed = USB_SPEED_SUPER,
.function = (char *) fsg_string_product,
.unbind = fsg_unbind,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/g_ffs.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ static int gfs_bind(struct usb_composite_dev *cdev);
static int gfs_unbind(struct usb_composite_dev *cdev);
static int gfs_do_config(struct usb_configuration *c);

static struct usb_composite_driver gfs_driver = {
static __refdata struct usb_composite_driver gfs_driver = {
.name = DRIVER_NAME,
.dev = &gfs_dev_desc,
.strings = gfs_dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/gmidi.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ static int __init midi_bind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver midi_driver = {
static __refdata struct usb_composite_driver midi_driver = {
.name = (char *) longname,
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/hid.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ static int __devexit hidg_plat_driver_remove(struct platform_device *pdev)
/****************************** Some noise ******************************/


static struct usb_composite_driver hidg_driver = {
static __refdata struct usb_composite_driver hidg_driver = {
.name = "g_hid",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/mass_storage.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ static int __init msg_bind(struct usb_composite_dev *cdev)

/****************************** Some noise ******************************/

static struct usb_composite_driver msg_driver = {
static __refdata struct usb_composite_driver msg_driver = {
.name = "g_mass_storage",
.dev = &msg_device_desc,
.iProduct = DRIVER_DESC,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/multi.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ static int __exit multi_unbind(struct usb_composite_dev *cdev)
/****************************** Some noise ******************************/


static struct usb_composite_driver multi_driver = {
static __refdata struct usb_composite_driver multi_driver = {
.name = "g_multi",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/ncm.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ static int __exit gncm_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver ncm_driver = {
static __refdata struct usb_composite_driver ncm_driver = {
.name = "g_ncm",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/nokia.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static int __exit nokia_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver nokia_driver = {
static __refdata struct usb_composite_driver nokia_driver = {
.name = "g_nokia",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/printer.c
Original file line number Diff line number Diff line change
Expand Up @@ -1269,7 +1269,7 @@ static int __init printer_bind(struct usb_composite_dev *cdev)
return usb_add_config(cdev, &printer_cfg_driver, printer_bind_config);
}

static struct usb_composite_driver printer_driver = {
static __refdata struct usb_composite_driver printer_driver = {
.name = shortname,
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ static int __init gs_bind(struct usb_composite_dev *cdev)
return status;
}

static struct usb_composite_driver gserial_driver = {
static __refdata struct usb_composite_driver gserial_driver = {
.name = "g_serial",
.dev = &device_desc,
.strings = dev_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/tcm_usb_gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -2436,7 +2436,7 @@ static int usb_target_bind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver usbg_driver = {
static __refdata struct usb_composite_driver usbg_driver = {
.name = "g_target",
.dev = &usbg_device_desc,
.strings = usbg_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/webcam.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ webcam_bind(struct usb_composite_dev *cdev)
* Driver
*/

static struct usb_composite_driver webcam_driver = {
static __refdata struct usb_composite_driver webcam_driver = {
.name = "g_webcam",
.dev = &webcam_device_descriptor,
.strings = webcam_device_strings,
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/usb/gadget/zero.c
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ static int zero_unbind(struct usb_composite_dev *cdev)
return 0;
}

static struct usb_composite_driver zero_driver = {
static __refdata struct usb_composite_driver zero_driver = {
.name = "zero",
.dev = &device_desc,
.strings = dev_strings,
Expand Down

0 comments on commit efd665c

Please sign in to comment.