Skip to content

Commit

Permalink
usb: renesas_usbhs: remove the_controller_link
Browse files Browse the repository at this point in the history
current renesas_usbhs is using new style udc_start/stop from
af1d705
(usb: gadget: renesas: convert to new style).

with this patch we can finally remove the global "the_controller_link"

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
  • Loading branch information
Kuninori Morimoto authored and Felipe Balbi committed Dec 12, 2011
1 parent dfbb7f4 commit b294b20
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions drivers/usb/renesas_usbhs/mod_gadget.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ struct usbhsg_uep {
struct usbhsg_gpriv {
struct usb_gadget gadget;
struct usbhs_mod mod;
struct list_head link;

struct usbhsg_uep *uep;
int uep_size;
Expand Down Expand Up @@ -115,16 +114,6 @@ struct usbhsg_recip_handle {
#define usbhsg_status_clr(gp, b) (gp->status &= ~b)
#define usbhsg_status_has(gp, b) (gp->status & b)

/* controller */
LIST_HEAD(the_controller_link);

#define usbhsg_for_each_controller(gpriv)\
list_for_each_entry(gpriv, &the_controller_link, link)
#define usbhsg_controller_register(gpriv)\
list_add_tail(&(gpriv)->link, &the_controller_link)
#define usbhsg_controller_unregister(gpriv)\
list_del_init(&(gpriv)->link)

/*
* queue push/pop
*/
Expand Down Expand Up @@ -1032,8 +1021,6 @@ int usbhs_mod_gadget_probe(struct usbhs_priv *priv)
}
}

usbhsg_controller_register(gpriv);

ret = usb_add_gadget_udc(dev, &gpriv->gadget);
if (ret)
goto err_register;
Expand Down Expand Up @@ -1062,8 +1049,6 @@ void usbhs_mod_gadget_remove(struct usbhs_priv *priv)

device_unregister(&gpriv->gadget.dev);

usbhsg_controller_unregister(gpriv);

kfree(gpriv->uep);
kfree(gpriv);
}

0 comments on commit b294b20

Please sign in to comment.