[U-Boot] [PULL] u-boot-usb/master

The following changes since commit e141652b9cd0cb4f899f7a0fd71c8a438300e365:
config: Fix line lengths in include/config_distro_defaults.h (2014-02-05 08:04:38 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to f016f8ca3d503af004a649de1c704d5ddf3def22:
usb: mv_udc: Rename to ci_udc (2014-02-06 04:48:15 +0100)
---------------------------------------------------------------- Lukasz Majewski (6): usb:gadget:ums: Replace malloc calls with memalign to fix cache buffer alignment usb:udc:samsung: Remove redundant cache operation from Samsung UDC driver usb:udc:samsung: Allow burst transfers for non EP0 endpints usb:udc:samsung: Zero copy approach for data passed to Samsung's UDC driver usb:gadget:f_thor: Allocate request up to THOR_PACKET_SIZE not ep-
maxpacket
usb:gadget:f_thor: cosmetic: Remove debug memset
Marek Vasut (1): usb: mv_udc: Rename to ci_udc
board/boundary/nitrogen6x/nitrogen6x.c | 2 +- drivers/serial/usbtty.h | 4 +-- drivers/usb/gadget/Makefile | 2 +- drivers/usb/gadget/{mv_udc.c => ci_udc.c} | 182 ++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ drivers/usb/gadget/{mv_udc.h => ci_udc.h} | 12 +++---- drivers/usb/gadget/f_mass_storage.c | 4 +-- drivers/usb/gadget/f_thor.c | 4 +-- drivers/usb/gadget/gadget_chips.h | 8 ++--- drivers/usb/gadget/s3c_udc_otg.c | 19 +++++----- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 87 +++++++++++++++++++--------------------------- include/configs/nitrogen6x.h | 2 +- include/configs/sansa_fuze_plus.h | 2 +- include/configs/xfi3.h | 2 +- include/usb/{mv_udc.h => ci_udc.h} | 6 ++-- include/usb/s3c_udc.h | 5 +-- 15 files changed, 160 insertions(+), 181 deletions(-) rename drivers/usb/gadget/{mv_udc.c => ci_udc.c} (79%) rename drivers/usb/gadget/{mv_udc.h => ci_udc.h} (94%) rename include/usb/{mv_udc.h => ci_udc.h} (73%)

With e0059ea switching to using SZ_1K, we need to #include <asm/sizes.h> here for everyone to build still.
Signed-off-by: Tom Rini trini@ti.com --- include/usb/s3c_udc.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/usb/s3c_udc.h b/include/usb/s3c_udc.h index 6dead2f..ce3dd2c 100644 --- a/include/usb/s3c_udc.h +++ b/include/usb/s3c_udc.h @@ -10,6 +10,7 @@ #define __S3C_USB_GADGET
#include <asm/errno.h> +#include <asm/sizes.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> #include <linux/list.h>

On Thu, Feb 06, 2014 at 02:27:19PM -0500, Tom Rini wrote:
With e0059ea switching to using SZ_1K, we need to #include <asm/sizes.h> here for everyone to build still.
Signed-off-by: Tom Rini trini@ti.com
Applied to u-boot/master, thanks!

Hi Tom,
On Thu, Feb 06, 2014 at 02:27:19PM -0500, Tom Rini wrote:
With e0059ea switching to using SZ_1K, we need to #include <asm/sizes.h> here for everyone to build still.
Signed-off-by: Tom Rini trini@ti.com
Applied to u-boot/master, thanks!
Thanks for fixing. I must confess that, I've wrongly assumed that build tests only with Trats/Trats2 is enough.
My bad, sorry for inconvenience.

On Thursday, February 06, 2014 at 08:27:19 PM, Tom Rini wrote:
With e0059ea switching to using SZ_1K, we need to #include <asm/sizes.h> here for everyone to build still.
Signed-off-by: Tom Rini trini@ti.com
Acked-by: Marek Vasut marex@denx.de
include/usb/s3c_udc.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/usb/s3c_udc.h b/include/usb/s3c_udc.h index 6dead2f..ce3dd2c 100644 --- a/include/usb/s3c_udc.h +++ b/include/usb/s3c_udc.h @@ -10,6 +10,7 @@ #define __S3C_USB_GADGET
#include <asm/errno.h> +#include <asm/sizes.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> #include <linux/list.h>
Best regards, Marek Vasut

On Thu, Feb 06, 2014 at 04:51:33AM +0100, Marek Vasut wrote:
The following changes since commit e141652b9cd0cb4f899f7a0fd71c8a438300e365:
config: Fix line lengths in include/config_distro_defaults.h (2014-02-05 08:04:38 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-usb.git master
for you to fetch changes up to f016f8ca3d503af004a649de1c704d5ddf3def22:
usb: mv_udc: Rename to ci_udc (2014-02-06 04:48:15 +0100)
Lukasz Majewski (6): usb:gadget:ums: Replace malloc calls with memalign to fix cache buffer alignment usb:udc:samsung: Remove redundant cache operation from Samsung UDC driver usb:udc:samsung: Allow burst transfers for non EP0 endpints usb:udc:samsung: Zero copy approach for data passed to Samsung's UDC driver usb:gadget:f_thor: Allocate request up to THOR_PACKET_SIZE not ep-
maxpacket
usb:gadget:f_thor: cosmetic: Remove debug memset
Marek Vasut (1): usb: mv_udc: Rename to ci_udc
board/boundary/nitrogen6x/nitrogen6x.c | 2 +- drivers/serial/usbtty.h | 4 +-- drivers/usb/gadget/Makefile | 2 +- drivers/usb/gadget/{mv_udc.c => ci_udc.c} | 182 ++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------ drivers/usb/gadget/{mv_udc.h => ci_udc.h} | 12 +++---- drivers/usb/gadget/f_mass_storage.c | 4 +-- drivers/usb/gadget/f_thor.c | 4 +-- drivers/usb/gadget/gadget_chips.h | 8 ++--- drivers/usb/gadget/s3c_udc_otg.c | 19 +++++----- drivers/usb/gadget/s3c_udc_otg_xfer_dma.c | 87 +++++++++++++++++++--------------------------- include/configs/nitrogen6x.h | 2 +- include/configs/sansa_fuze_plus.h | 2 +- include/configs/xfi3.h | 2 +- include/usb/{mv_udc.h => ci_udc.h} | 6 ++-- include/usb/s3c_udc.h | 5 +-- 15 files changed, 160 insertions(+), 181 deletions(-) rename drivers/usb/gadget/{mv_udc.c => ci_udc.c} (79%) rename drivers/usb/gadget/{mv_udc.h => ci_udc.h} (94%) rename include/usb/{mv_udc.h => ci_udc.h} (73%)
Applied to u-boot/master, thanks!
participants (3)
-
Lukasz Majewski
-
Marek Vasut
-
Tom Rini