* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors
@ 2017-06-05 7:19 Alexey Brodkin
2017-06-05 11:42 ` Marek Vasut
0 siblings, 1 reply; 12+ messages in thread
From: Alexey Brodkin @ 2017-06-05 7:19 UTC (permalink / raw)
To: u-boot
We used to have opencoded ehci_readl()/writel() which required no
external functions to be called.
Now with attempt to switch to generic readl()/writel() accessors
we see a missing declaration of those accessors in ehci-ppc4xx.
Something like that happens if applied
http://patchwork.ozlabs.org/patch/726714/:
--------------------------------->8---------------------------
CC drivers/usb/host/ehci-pci.o
In file included from drivers/usb/host/ehci-pci.c:14:0:
drivers/usb/host/ehci-pci.c: In function 'ehci_pci_init':
drivers/usb/host/ehci.h:108:36: warning: implicit declaration of function 'readl' [-Wimplicit-function-declaration]
#define ehci_readl(x) cpu_to_le32(readl(x))
^
drivers/usb/host/ehci.h:23:26: note: in definition of macro 'HC_LENGTH'
#define HC_LENGTH(p) (((p) >> 0) & 0x00ff)
^
include/linux/byteorder/generic.h:89:21: note: in expansion of macro '__cpu_to_le32'
#define cpu_to_le32 __cpu_to_le32
^~~~~~~~~~~~~
drivers/usb/host/ehci-pci.c:33:14: note: in expansion of macro 'ehci_readl'
HC_LENGTH(ehci_readl(&hccr->cr_capbase)));
^~~~~~~~~~
--------------------------------->8---------------------------
This the same fix as we have for "ehci-ppc4xx" in
83cb46c286b "ehci-ppc4xx: Prepare for usage of readl()/writel() accessors".
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Stefan Roese <sr@denx.de>
---
drivers/usb/host/ehci-pci.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c
index f20fc3354cc0..dceba4bd7aa1 100644
--- a/drivers/usb/host/ehci-pci.c
+++ b/drivers/usb/host/ehci-pci.c
@@ -10,6 +10,7 @@
#include <errno.h>
#include <pci.h>
#include <usb.h>
+#include <asm/io.h>
#include "ehci.h"
--
2.7.5
^ permalink raw reply related [flat|nested] 12+ messages in thread* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-05 7:19 [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors Alexey Brodkin @ 2017-06-05 11:42 ` Marek Vasut 2017-06-05 12:03 ` Alexey Brodkin 0 siblings, 1 reply; 12+ messages in thread From: Marek Vasut @ 2017-06-05 11:42 UTC (permalink / raw) To: u-boot On 06/05/2017 09:19 AM, Alexey Brodkin wrote: > We used to have opencoded ehci_readl()/writel() which required no > external functions to be called. Applied, thanks. > Now with attempt to switch to generic readl()/writel() accessors > we see a missing declaration of those accessors in ehci-ppc4xx. > Something like that happens if applied > http://patchwork.ozlabs.org/patch/726714/: > --------------------------------->8--------------------------- > CC drivers/usb/host/ehci-pci.o > In file included from drivers/usb/host/ehci-pci.c:14:0: > drivers/usb/host/ehci-pci.c: In function 'ehci_pci_init': > drivers/usb/host/ehci.h:108:36: warning: implicit declaration of function 'readl' [-Wimplicit-function-declaration] > #define ehci_readl(x) cpu_to_le32(readl(x)) > ^ > drivers/usb/host/ehci.h:23:26: note: in definition of macro 'HC_LENGTH' > #define HC_LENGTH(p) (((p) >> 0) & 0x00ff) > ^ > include/linux/byteorder/generic.h:89:21: note: in expansion of macro '__cpu_to_le32' > #define cpu_to_le32 __cpu_to_le32 > ^~~~~~~~~~~~~ > drivers/usb/host/ehci-pci.c:33:14: note: in expansion of macro 'ehci_readl' > HC_LENGTH(ehci_readl(&hccr->cr_capbase))); > ^~~~~~~~~~ > --------------------------------->8--------------------------- > > This the same fix as we have for "ehci-ppc4xx" in > 83cb46c286b "ehci-ppc4xx: Prepare for usage of readl()/writel() accessors". > > Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> > Cc: Simon Glass <sjg@chromium.org> > Cc: Tom Rini <trini@konsulko.com> > Cc: Marek Vasut <marex@denx.de> > Cc: Stefan Roese <sr@denx.de> > --- > drivers/usb/host/ehci-pci.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c > index f20fc3354cc0..dceba4bd7aa1 100644 > --- a/drivers/usb/host/ehci-pci.c > +++ b/drivers/usb/host/ehci-pci.c > @@ -10,6 +10,7 @@ > #include <errno.h> > #include <pci.h> > #include <usb.h> > +#include <asm/io.h> > > #include "ehci.h" > > -- Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-05 11:42 ` Marek Vasut @ 2017-06-05 12:03 ` Alexey Brodkin 2017-06-05 12:06 ` Marek Vasut 0 siblings, 1 reply; 12+ messages in thread From: Alexey Brodkin @ 2017-06-05 12:03 UTC (permalink / raw) To: u-boot Hi Marek, On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: > On 06/05/2017 09:19 AM, Alexey Brodkin wrote: > > > > We used to have opencoded ehci_readl()/writel() which required no > > external functions to be called. > > Applied, thanks. Now when we get everything ready for building fine see https://travis-ci.org/abrodkin/u-boot/builds/238394634 could you please apply my old patch with conversion to platform- specific accessors? I mean this one http://patchwork.ozlabs.org/patch/726714/ -Alexey ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-05 12:03 ` Alexey Brodkin @ 2017-06-05 12:06 ` Marek Vasut 2017-06-05 12:24 ` Alexey Brodkin 2017-06-14 9:55 ` Alexey Brodkin 0 siblings, 2 replies; 12+ messages in thread From: Marek Vasut @ 2017-06-05 12:06 UTC (permalink / raw) To: u-boot On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > Hi Marek, Hi, > On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: >> On 06/05/2017 09:19 AM, Alexey Brodkin wrote: >>> >>> We used to have opencoded ehci_readl()/writel() which required no >>> external functions to be called. >> >> Applied, thanks. > > Now when we get everything ready for building fine > see https://travis-ci.org/abrodkin/u-boot/builds/238394634 > could you please apply my old patch with conversion to platform- > specific accessors? > > I mean this one http://patchwork.ozlabs.org/patch/726714/ Yes, rebase, retest and repost. -- Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-05 12:06 ` Marek Vasut @ 2017-06-05 12:24 ` Alexey Brodkin 2017-06-14 9:55 ` Alexey Brodkin 1 sibling, 0 replies; 12+ messages in thread From: Alexey Brodkin @ 2017-06-05 12:24 UTC (permalink / raw) To: u-boot Hi Marek, On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: > On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > > > > Hi Marek, > > Hi, > > > > > On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: > > > > > > On 06/05/2017 09:19 AM, Alexey Brodkin wrote: > > > > > > > > > > > > We used to have opencoded ehci_readl()/writel() which required no > > > > external functions to be called. > > > > > > Applied, thanks. > > > > Now when we get everything ready for building fine > > see https://urldefense.proofpoint.com/v2/url?u=https-3A__travis-2Dci.org_abrodkin_u-2Dboot_builds_238394634&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lq > > deeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=FxquunKntzi7lTQhylwOxuVroRKBcROy8uH08Fs84AI&e= > > could you please apply my old patch with conversion to platform- > > specific accessors? > > > > I mean this one https://urldefense.proofpoint.com/v2/url?u=http-3A__patchwork.ozlabs.org_patch_726714_&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSS > > Ees0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=qFC1yxpdfhfEijsMnTgN0g_-1ckUkUNt8RdsQBJC1f0&e= > > Yes, rebase, retest and repost. Ok will do shortly. Regards, Alexey ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-05 12:06 ` Marek Vasut 2017-06-05 12:24 ` Alexey Brodkin @ 2017-06-14 9:55 ` Alexey Brodkin 2017-06-15 17:00 ` Marek Vasut 1 sibling, 1 reply; 12+ messages in thread From: Alexey Brodkin @ 2017-06-14 9:55 UTC (permalink / raw) To: u-boot Hi Marek, On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: > On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > > > > Hi Marek, > > Hi, > > > > > On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: > > > > > > On 06/05/2017 09:19 AM, Alexey Brodkin wrote: > > > > > > > > > > > > We used to have opencoded ehci_readl()/writel() which required no > > > > external functions to be called. > > > > > > Applied, thanks. > > > > Now when we get everything ready for building fine > > see https://urldefense.proofpoint.com/v2/url?u=https-3A__travis-2Dci.org_abrodkin_u-2Dboot_builds_238394634&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lq > > deeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=FxquunKntzi7lTQhylwOxuVroRKBcROy8uH08Fs84AI&e= > > could you please apply my old patch with conversion to platform- > > specific accessors? > > > > I mean this one https://urldefense.proofpoint.com/v2/url?u=http-3A__patchwork.ozlabs.org_patch_726714_&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSS > > Ees0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=qFC1yxpdfhfEijsMnTgN0g_-1ckUkUNt8RdsQBJC1f0&e= > > Yes, rebase, retest and repost. > That last comment was about another patch which depends on this change. So I'm wondering if there's a reason for "ehci-pci: Prepare for usage of readl()/writel() accessors" to not be applied? And BTW I did retested and resent the one that depends on this, see http://patchwork.ozlabs.org/patch/771436/. -Alexey ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-14 9:55 ` Alexey Brodkin @ 2017-06-15 17:00 ` Marek Vasut 2017-06-15 17:19 ` Tom Rini 0 siblings, 1 reply; 12+ messages in thread From: Marek Vasut @ 2017-06-15 17:00 UTC (permalink / raw) To: u-boot On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > Hi Marek, > > On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: >> On 06/05/2017 02:03 PM, Alexey Brodkin wrote: >>> >>> Hi Marek, >> >> Hi, >> >>> >>> On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: >>>> >>>> On 06/05/2017 09:19 AM, Alexey Brodkin wrote: >>>>> >>>>> >>>>> We used to have opencoded ehci_readl()/writel() which required no >>>>> external functions to be called. >>>> >>>> Applied, thanks. >>> >>> Now when we get everything ready for building fine >>> see https://urldefense.proofpoint.com/v2/url?u=https-3A__travis-2Dci.org_abrodkin_u-2Dboot_builds_238394634&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lq >>> deeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=FxquunKntzi7lTQhylwOxuVroRKBcROy8uH08Fs84AI&e= >>> could you please apply my old patch with conversion to platform- >>> specific accessors? >>> >>> I mean this one https://urldefense.proofpoint.com/v2/url?u=http-3A__patchwork.ozlabs.org_patch_726714_&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSS >>> Ees0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=qFC1yxpdfhfEijsMnTgN0g_-1ckUkUNt8RdsQBJC1f0&e= >> >> Yes, rebase, retest and repost. >> > > That last comment was about another patch which depends on this change. > So I'm wondering if there's a reason for > "ehci-pci: Prepare for usage of readl()/writel() accessors" to not be applied? > > And BTW I did retested and resent the one that depends on this, > see http://patchwork.ozlabs.org/patch/771436/. If there are any patches you want applied, please repost. And no , I am NOT taking random PW links. -- Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-15 17:00 ` Marek Vasut @ 2017-06-15 17:19 ` Tom Rini 2017-06-15 17:23 ` Marek Vasut 0 siblings, 1 reply; 12+ messages in thread From: Tom Rini @ 2017-06-15 17:19 UTC (permalink / raw) To: u-boot On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: > On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > > Hi Marek, > > > > On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: > >> On 06/05/2017 02:03 PM, Alexey Brodkin wrote: > >>> > >>> Hi Marek, > >> > >> Hi, > >> > >>> > >>> On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: > >>>> > >>>> On 06/05/2017 09:19 AM, Alexey Brodkin wrote: > >>>>> > >>>>> > >>>>> We used to have opencoded ehci_readl()/writel() which required no > >>>>> external functions to be called. > >>>> > >>>> Applied, thanks. > >>> > >>> Now when we get everything ready for building fine > >>> see https://urldefense.proofpoint.com/v2/url?u=https-3A__travis-2Dci.org_abrodkin_u-2Dboot_builds_238394634&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lq > >>> deeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=FxquunKntzi7lTQhylwOxuVroRKBcROy8uH08Fs84AI&e= > >>> could you please apply my old patch with conversion to platform- > >>> specific accessors? > >>> > >>> I mean this one https://urldefense.proofpoint.com/v2/url?u=http-3A__patchwork.ozlabs.org_patch_726714_&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSS > >>> Ees0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=qFC1yxpdfhfEijsMnTgN0g_-1ckUkUNt8RdsQBJC1f0&e= > >> > >> Yes, rebase, retest and repost. > >> > > > > That last comment was about another patch which depends on this change. > > So I'm wondering if there's a reason for > > "ehci-pci: Prepare for usage of readl()/writel() accessors" to not be applied? > > > > And BTW I did retested and resent the one that depends on this, > > see http://patchwork.ozlabs.org/patch/771436/. > > If there are any patches you want applied, please repost. > And no , I am NOT taking random PW links. That's not a random link, that's his repost from 10 days ago. -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: Digital signature URL: <http://lists.denx.de/pipermail/u-boot/attachments/20170615/18463c4f/attachment.sig> ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-15 17:19 ` Tom Rini @ 2017-06-15 17:23 ` Marek Vasut 2017-06-15 17:48 ` Alexey Brodkin 0 siblings, 1 reply; 12+ messages in thread From: Marek Vasut @ 2017-06-15 17:23 UTC (permalink / raw) To: u-boot On 06/15/2017 07:19 PM, Tom Rini wrote: > On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: >> On 06/14/2017 11:55 AM, Alexey Brodkin wrote: >>> Hi Marek, >>> >>> On Mon, 2017-06-05 at 14:06 +0200, Marek Vasut wrote: >>>> On 06/05/2017 02:03 PM, Alexey Brodkin wrote: >>>>> >>>>> Hi Marek, >>>> >>>> Hi, >>>> >>>>> >>>>> On Mon, 2017-06-05 at 13:42 +0200, Marek Vasut wrote: >>>>>> >>>>>> On 06/05/2017 09:19 AM, Alexey Brodkin wrote: >>>>>>> >>>>>>> >>>>>>> We used to have opencoded ehci_readl()/writel() which required no >>>>>>> external functions to be called. >>>>>> >>>>>> Applied, thanks. >>>>> >>>>> Now when we get everything ready for building fine >>>>> see https://urldefense.proofpoint.com/v2/url?u=https-3A__travis-2Dci.org_abrodkin_u-2Dboot_builds_238394634&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lq >>>>> deeSSEes0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=FxquunKntzi7lTQhylwOxuVroRKBcROy8uH08Fs84AI&e= >>>>> could you please apply my old patch with conversion to platform- >>>>> specific accessors? >>>>> >>>>> I mean this one https://urldefense.proofpoint.com/v2/url?u=http-3A__patchwork.ozlabs.org_patch_726714_&d=DwICaQ&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSS >>>>> Ees0GFDDl656eViXO7breS55ytWkhpk5R81I&m=6zuMNpU2sqTEauB3FyrBrLk_RR6Ko4zfrK2Jtmw_WLo&s=qFC1yxpdfhfEijsMnTgN0g_-1ckUkUNt8RdsQBJC1f0&e= >>>> >>>> Yes, rebase, retest and repost. >>>> >>> >>> That last comment was about another patch which depends on this change. >>> So I'm wondering if there's a reason for >>> "ehci-pci: Prepare for usage of readl()/writel() accessors" to not be applied? >>> >>> And BTW I did retested and resent the one that depends on this, >>> see http://patchwork.ozlabs.org/patch/771436/. >> >> If there are any patches you want applied, please repost. >> And no , I am NOT taking random PW links. > > That's not a random link, that's his repost from 10 days ago. Clearly that patch did NOT land in my mailbox. -- Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-15 17:23 ` Marek Vasut @ 2017-06-15 17:48 ` Alexey Brodkin 2017-06-15 17:51 ` Marek Vasut 0 siblings, 1 reply; 12+ messages in thread From: Alexey Brodkin @ 2017-06-15 17:48 UTC (permalink / raw) To: u-boot Hi Marek, On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: > On 06/15/2017 07:19 PM, Tom Rini wrote: > > > > On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: > > > > > > On 06/14/2017 11:55 AM, Alexey Brodkin wrote: [snip] > > Clearly that patch did NOT land in my mailbox. So true, I meant to move your email from "cc" to "to" field but got distracted and ended-up sending the email to everybody but not you. Please pardon my inattention. -Alexey ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-15 17:48 ` Alexey Brodkin @ 2017-06-15 17:51 ` Marek Vasut 2017-06-15 17:52 ` Alexey Brodkin 0 siblings, 1 reply; 12+ messages in thread From: Marek Vasut @ 2017-06-15 17:51 UTC (permalink / raw) To: u-boot On 06/15/2017 07:48 PM, Alexey Brodkin wrote: > Hi Marek, > > On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: >> On 06/15/2017 07:19 PM, Tom Rini wrote: >>> >>> On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: >>>> >>>> On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > > [snip] > >> >> Clearly that patch did NOT land in my mailbox. > > So true, I meant to move your email from "cc" to "to" field but got distracted > and ended-up sending the email to everybody but not you. > > Please pardon my inattention. Anyway, I applied it to usb, hopefully it doesn't blow up this time. -- Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 12+ messages in thread
* [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors 2017-06-15 17:51 ` Marek Vasut @ 2017-06-15 17:52 ` Alexey Brodkin 0 siblings, 0 replies; 12+ messages in thread From: Alexey Brodkin @ 2017-06-15 17:52 UTC (permalink / raw) To: u-boot Hi Marek, On Thu, 2017-06-15 at 19:51 +0200, Marek Vasut wrote: > On 06/15/2017 07:48 PM, Alexey Brodkin wrote: > > > > Hi Marek, > > > > On Thu, 2017-06-15 at 19:23 +0200, Marek Vasut wrote: > > > > > > On 06/15/2017 07:19 PM, Tom Rini wrote: > > > > > > > > > > > > On Thu, Jun 15, 2017 at 07:00:25PM +0200, Marek Vasut wrote: > > > > > > > > > > > > > > > On 06/14/2017 11:55 AM, Alexey Brodkin wrote: > > > > [snip] > > > > > > > > > > > Clearly that patch did NOT land in my mailbox. > > > > So true, I meant to move your email from "cc" to "to" field but got distracted > > and ended-up sending the email to everybody but not you. > > > > Please pardon my inattention. > > Anyway, I applied it to usb, hopefully it doesn't blow up this time. > It shouldn't. It was built-tested with TravisCI this time. -Alexey ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2017-06-15 17:52 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-06-05 7:19 [U-Boot] [PATCH] ehci-pci: Prepare for usage of readl()/writel() accessors Alexey Brodkin 2017-06-05 11:42 ` Marek Vasut 2017-06-05 12:03 ` Alexey Brodkin 2017-06-05 12:06 ` Marek Vasut 2017-06-05 12:24 ` Alexey Brodkin 2017-06-14 9:55 ` Alexey Brodkin 2017-06-15 17:00 ` Marek Vasut 2017-06-15 17:19 ` Tom Rini 2017-06-15 17:23 ` Marek Vasut 2017-06-15 17:48 ` Alexey Brodkin 2017-06-15 17:51 ` Marek Vasut 2017-06-15 17:52 ` Alexey Brodkin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox