>>>>> "Daniel" == Daniel Mack <zon...@gmail.com> writes:

 Daniel> The musb struct is currently allocated along with the hcd, which makes
 Daniel> it difficult to build a driver that only acts as gadget device.

 Daniel> Fix this by allocating musb directly, and keep the hcd around as
 Daniel> a pointer in the musb struct.

 Daniel> struct hc_driver musb_hc_driver can now also be static to musb_host.c,
 Daniel> and the macro musb_to_hcd() is just a pointer dereferencer for now, and
 Daniel> will be eliminated later.

 Daniel> Signed-off-by: Daniel Mack <zon...@gmail.com>
 Daniel> Acked-by: Peter Korsgaard <jac...@sunsite.dk>
 Daniel> ---
 Daniel>  drivers/usb/musb/musb_core.c | 40 ++++++++++++++++----------------
 Daniel>  drivers/usb/musb/musb_core.h |  1 +
 Daniel>  drivers/usb/musb/musb_host.c | 54 
++++++++++++++++++++++++++++++++++++++------
 Daniel>  drivers/usb/musb/musb_host.h | 19 +++++++---------
 Daniel>  4 files changed, 75 insertions(+), 39 deletions(-)

 
 Daniel> +struct musb_hcd_link {
 Daniel> +      struct musb *musb;
 Daniel> +};
 Daniel> +
 Daniel> +struct musb *hcd_to_musb(struct usb_hcd *hcd)
 Daniel> +{
 Daniel> +      struct musb_hcd_link *link = (struct musb_hcd_link *) 
hcd->hcd_priv;
 Daniel> +      return link->musb;
 Daniel> +}
 Daniel> +

Sorry, I missed this first time around - But why the indirection with
musb_hcd_link? Why not simply directly store a pointer to struct musb in
hcd_priv?

-- 
Bye, Peter Korsgaard
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to