diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-04-03 12:46:58 +0200 |
---|---|---|
committer | Remy Bohmer <linux@bohmer.net> | 2009-04-06 20:40:46 +0200 |
commit | 2731b9a86685190d26b1883f27afda5ac8e1a313 (patch) | |
tree | 83511c3f504e62eb3ac129f3332d2bcaf25d6e32 /drivers/serial | |
parent | 712ac6a1a6909a58d6549fb220cc921a7e9f9979 (diff) | |
download | u-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.zip u-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.tar.gz u-boot-imx-2731b9a86685190d26b1883f27afda5ac8e1a313.tar.bz2 |
drivers/usb: regorganisation
move to linux usb driver organisation
as following
drivers/usb/gadget
drivers/usb/host
drivers/usb/musb
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/usbtty.c | 2 | ||||
-rw-r--r-- | drivers/serial/usbtty.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/serial/usbtty.c b/drivers/serial/usbtty.c index d8b1387..f711d0b 100644 --- a/drivers/serial/usbtty.c +++ b/drivers/serial/usbtty.c @@ -94,7 +94,7 @@ static char serial_number[16]; * Descriptors, Strings, Local variables. */ -/* defined and used by usbdcore_ep0.c */ +/* defined and used by gadget/ep0.c */ extern struct usb_string_descriptor **usb_strings; /* Indicies, References */ diff --git a/drivers/serial/usbtty.h b/drivers/serial/usbtty.h index ecefde5..77db972 100644 --- a/drivers/serial/usbtty.h +++ b/drivers/serial/usbtty.h @@ -24,11 +24,11 @@ #ifndef __USB_TTY_H__ #define __USB_TTY_H__ -#include <usbdcore.h> +#include <usbdevice.h> #if defined(CONFIG_PPC) -#include <usbdcore_mpc8xx.h> +#include <usb/mpc8xx_udc.h> #elif defined(CONFIG_ARM) -#include <usbdcore_omap1510.h> +#include <usb/omap1510_udc.h> #endif #include <version_autogenerated.h> |