Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1600183 > unrolled thread
| Started by | Lee Jones <lee.jones@linaro.org> |
|---|---|
| First post | 2017-03-14 11:00 +0100 |
| Last post | 2017-03-14 13:20 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v19 0/4] Introduce usb charger framework to deal with the usb gadget power negotation Lee Jones <lee.jones@linaro.org> - 2017-03-14 11:00 +0100
Re: [PATCH v19 0/4] Introduce usb charger framework to deal with the usb gadget power negotation Baolin Wang <baolin.wang@linaro.org> - 2017-03-14 11:40 +0100
Re: [PATCH v19 0/4] Introduce usb charger framework to deal with the usb gadget power negotation Lee Jones <lee.jones@linaro.org> - 2017-03-14 13:20 +0100
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-03-14 11:00 +0100 |
| Subject | Re: [PATCH v19 0/4] Introduce usb charger framework to deal with the usb gadget power negotation |
| Message-ID | <tkRpg-6Fd-17@gated-at.bofh.it> |
On Mon, 20 Feb 2017, Baolin Wang wrote: [...] > drivers/power/supply/wm831x_power.c | 63 +++ > drivers/usb/gadget/Kconfig | 8 + > drivers/usb/gadget/udc/Makefile | 1 + > drivers/usb/gadget/udc/charger.c | 865 +++++++++++++++++++++++++++++++++++ > drivers/usb/gadget/udc/core.c | 19 +- > include/linux/usb/charger.h | 176 +++++++ > include/linux/usb/gadget.h | 3 + > include/uapi/linux/usb/charger.h | 31 ++ > 8 files changed, 1165 insertions(+), 1 deletion(-) > create mode 100644 drivers/usb/gadget/udc/charger.c > create mode 100644 include/linux/usb/charger.h > create mode 100644 include/uapi/linux/usb/charger.h Why have you sent this set to me? Please be careful when submitting patches, since a lot of us have enough mail to contend with already. -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog
[toc] | [next] | [standalone]
| From | Baolin Wang <baolin.wang@linaro.org> |
|---|---|
| Date | 2017-03-14 11:40 +0100 |
| Message-ID | <tkS1X-7a1-3@gated-at.bofh.it> |
| In reply to | #1600183 |
Hi, On 14 March 2017 at 17:57, Lee Jones <lee.jones@linaro.org> wrote: > On Mon, 20 Feb 2017, Baolin Wang wrote: > > [...] > >> drivers/power/supply/wm831x_power.c | 63 +++ >> drivers/usb/gadget/Kconfig | 8 + >> drivers/usb/gadget/udc/Makefile | 1 + >> drivers/usb/gadget/udc/charger.c | 865 +++++++++++++++++++++++++++++++++++ >> drivers/usb/gadget/udc/core.c | 19 +- >> include/linux/usb/charger.h | 176 +++++++ >> include/linux/usb/gadget.h | 3 + >> include/uapi/linux/usb/charger.h | 31 ++ >> 8 files changed, 1165 insertions(+), 1 deletion(-) >> create mode 100644 drivers/usb/gadget/udc/charger.c >> create mode 100644 include/linux/usb/charger.h >> create mode 100644 include/uapi/linux/usb/charger.h > > Why have you sent this set to me? Since you have one ack on patch 4, I think I need CC you. But If you are not interested in this patchset, I will not CC you next time. Sorry. [PATCH v19 4/4] power: wm831x_power: Support USB charger current limit management Integrate with the newly added USB charger interface to limit the current we draw from the USB input based on the input device configuration identified by the USB stack, allowing us to charge more quickly from high current inputs without drawing more current than specified from others. Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Baolin Wang <baolin.wang@linaro.org> Acked-by: Lee Jones <lee.jones@linaro.org> Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Acked-by: Peter Chen <peter.chen@freescale.com> Acked-by: Sebastian Reichel <sre@kernel.org> ....... -- Baolin.wang Best Regards
[toc] | [prev] | [next] | [standalone]
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-03-14 13:20 +0100 |
| Message-ID | <tkTAK-8qq-7@gated-at.bofh.it> |
| In reply to | #1600204 |
On Tue, 14 Mar 2017, Baolin Wang wrote: > Hi, > > On 14 March 2017 at 17:57, Lee Jones <lee.jones@linaro.org> wrote: > > On Mon, 20 Feb 2017, Baolin Wang wrote: > > > > [...] > > > >> drivers/power/supply/wm831x_power.c | 63 +++ > >> drivers/usb/gadget/Kconfig | 8 + > >> drivers/usb/gadget/udc/Makefile | 1 + > >> drivers/usb/gadget/udc/charger.c | 865 +++++++++++++++++++++++++++++++++++ > >> drivers/usb/gadget/udc/core.c | 19 +- > >> include/linux/usb/charger.h | 176 +++++++ > >> include/linux/usb/gadget.h | 3 + > >> include/uapi/linux/usb/charger.h | 31 ++ > >> 8 files changed, 1165 insertions(+), 1 deletion(-) > >> create mode 100644 drivers/usb/gadget/udc/charger.c > >> create mode 100644 include/linux/usb/charger.h > >> create mode 100644 include/uapi/linux/usb/charger.h > > > > Why have you sent this set to me? > > Since you have one ack on patch 4, I think I need CC you. But If you > are not interested in this patchset, I will not CC you next time. > Sorry. I Acked one of the patches 9 months ago since it contained an MFD change. Yes, if you could drop me from any new submissions, that'd be great, thanks. > [PATCH v19 4/4] power: wm831x_power: Support USB charger current limit > management > > Integrate with the newly added USB charger interface to limit the current > we draw from the USB input based on the input device configuration > identified by the USB stack, allowing us to charge more quickly from high > current inputs without drawing more current than specified from others. > > Signed-off-by: Mark Brown <broonie@kernel.org> > Signed-off-by: Baolin Wang <baolin.wang@linaro.org> > Acked-by: Lee Jones <lee.jones@linaro.org> > Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> > Acked-by: Peter Chen <peter.chen@freescale.com> > Acked-by: Sebastian Reichel <sre@kernel.org> > ....... > -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web