All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-usb/master
@ 2014-02-06  3:51 Marek Vasut
  2014-02-06 19:27 ` [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h> Tom Rini
  2014-02-06 21:06 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini
  0 siblings, 2 replies; 6+ messages in thread
From: Marek Vasut @ 2014-02-06  3:51 UTC (permalink / raw)
  To: u-boot

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%)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h>
  2014-02-06  3:51 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
@ 2014-02-06 19:27 ` Tom Rini
  2014-02-06 21:07   ` Tom Rini
  2014-02-07  0:12   ` Marek Vasut
  2014-02-06 21:06 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini
  1 sibling, 2 replies; 6+ messages in thread
From: Tom Rini @ 2014-02-06 19:27 UTC (permalink / raw)
  To: u-boot

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>
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PULL] u-boot-usb/master
  2014-02-06  3:51 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
  2014-02-06 19:27 ` [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h> Tom Rini
@ 2014-02-06 21:06 ` Tom Rini
  1 sibling, 0 replies; 6+ messages in thread
From: Tom Rini @ 2014-02-06 21:06 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140206/f96279af/attachment.pgp>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h>
  2014-02-06 19:27 ` [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h> Tom Rini
@ 2014-02-06 21:07   ` Tom Rini
  2014-02-07  6:23     ` Lukasz Majewski
  2014-02-07  0:12   ` Marek Vasut
  1 sibling, 1 reply; 6+ messages in thread
From: Tom Rini @ 2014-02-06 21:07 UTC (permalink / raw)
  To: u-boot

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!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140206/fd91e431/attachment.pgp>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h>
  2014-02-06 19:27 ` [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h> Tom Rini
  2014-02-06 21:07   ` Tom Rini
@ 2014-02-07  0:12   ` Marek Vasut
  1 sibling, 0 replies; 6+ messages in thread
From: Marek Vasut @ 2014-02-07  0:12 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h>
  2014-02-06 21:07   ` Tom Rini
@ 2014-02-07  6:23     ` Lukasz Majewski
  0 siblings, 0 replies; 6+ messages in thread
From: Lukasz Majewski @ 2014-02-07  6:23 UTC (permalink / raw)
  To: u-boot

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.

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-02-07  6:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-06  3:51 [U-Boot] [PULL] u-boot-usb/master Marek Vasut
2014-02-06 19:27 ` [U-Boot] [PATCH] include/usb/s3c_udc.h: Add <asm/sizes.h> Tom Rini
2014-02-06 21:07   ` Tom Rini
2014-02-07  6:23     ` Lukasz Majewski
2014-02-07  0:12   ` Marek Vasut
2014-02-06 21:06 ` [U-Boot] [PULL] u-boot-usb/master Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.