Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1312957 > unrolled thread

[PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD

Started byWenyou Yang <wenyou.yang@atmel.com>
First post2016-01-20 08:30 +0100
Last post2016-01-21 02:20 +0100
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD Wenyou Yang <wenyou.yang@atmel.com> - 2016-01-20 08:30 +0100
    Re: [PATCH v6 0/2] power: act8945a: add charger driver for the  sub-device of ACT8945A MFD Lee Jones <lee.jones@linaro.org> - 2016-01-20 12:40 +0100
      RE: [PATCH v6 0/2] power: act8945a: add charger driver for the  sub-device of ACT8945A MFD "Yang, Wenyou" <Wenyou.Yang@atmel.com> - 2016-01-21 02:20 +0100

#1312957 — [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD

FromWenyou Yang <wenyou.yang@atmel.com>
Date2016-01-20 08:30 +0100
Subject[PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD
Message-ID<qSVnk-3cB-11@gated-at.bofh.it>
The ACT8945A is a Multi Function Device with the following subdevices:
 - Regulator
 - Charger

This patch set is to add regulator driver for ACT8945A.
It is based on the patch set:
	http://lists.infradead.org/pipermail/linux-arm-kernel/2016-January/400534.html

Changes in v6:
 - change the type value to unsigned int.

Changes in v5:
 - remove spare spaces after #define.
 - add OF match table.
 - collect Reviewed-by from Krzysztof.

Changes in v4:
 - use spaces after #define, not tabs.
 - use BIT(n) macros to substitute (0x01 << x).
 - change dt properties with more legible name.
 - change the properties with more legible name, clearer description.

Changes in v3:
 - update the file header with short version license and author line.
 - remove unused member of struct act8945a_charger, dev.
 - action due to removing the member of stuct act8945a_dev, dev.
 - remove the unnecessary print out.
 - remove the unnecessary act8945a_charger_remove().
 - fix align of the code-style.

Changes in v2:
 1./ Substitute of_property_read_bool() for of_get_property().
 2./ Substitute devm_power_supply_register() for power_supply_register().
 3./ Use module_platform_driver(), instead of subsys_initcall().
 4./ Substitute MODULE_LICENSE("GPL") for MODULE_LICENSE("GPL v2").

Wenyou Yang (2):
  power: act8945a: add charger driver for ACT8945A
  power: add documentation for ACT8945A's charger DT bindings

 .../devicetree/bindings/power/act8945a-charger.txt |   33 ++
 drivers/power/Kconfig                              |    7 +
 drivers/power/Makefile                             |    1 +
 drivers/power/act8945a_charger.c                   |  375 ++++++++++++++++++++
 4 files changed, 416 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/power/act8945a-charger.txt
 create mode 100644 drivers/power/act8945a_charger.c

-- 
1.7.9.5

[toc] | [next] | [standalone]


#1313143 — Re: [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD

FromLee Jones <lee.jones@linaro.org>
Date2016-01-20 12:40 +0100
SubjectRe: [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD
Message-ID<qSZhg-5IV-5@gated-at.bofh.it>
In reply to#1312957
It really is unacceptable to be sending out so many versions at such
short intervals, essentially spamming the list.  This infraction is
worsened by the amount of people you have on CC, most of them for no
reason.  This set shouldn't hit my inbox at all, let alone 4 times in
one day!

> The ACT8945A is a Multi Function Device with the following subdevices:
>  - Regulator
>  - Charger
> 
> This patch set is to add regulator driver for ACT8945A.
> It is based on the patch set:
> 	http://lists.infradead.org/pipermail/linux-arm-kernel/2016-January/400534.html
> 
> Changes in v6:
>  - change the type value to unsigned int.
> 
> Changes in v5:
>  - remove spare spaces after #define.
>  - add OF match table.
>  - collect Reviewed-by from Krzysztof.
> 
> Changes in v4:
>  - use spaces after #define, not tabs.
>  - use BIT(n) macros to substitute (0x01 << x).
>  - change dt properties with more legible name.
>  - change the properties with more legible name, clearer description.
> 
> Changes in v3:
>  - update the file header with short version license and author line.
>  - remove unused member of struct act8945a_charger, dev.
>  - action due to removing the member of stuct act8945a_dev, dev.
>  - remove the unnecessary print out.
>  - remove the unnecessary act8945a_charger_remove().
>  - fix align of the code-style.
> 
> Changes in v2:
>  1./ Substitute of_property_read_bool() for of_get_property().
>  2./ Substitute devm_power_supply_register() for power_supply_register().
>  3./ Use module_platform_driver(), instead of subsys_initcall().
>  4./ Substitute MODULE_LICENSE("GPL") for MODULE_LICENSE("GPL v2").
> 
> Wenyou Yang (2):
>   power: act8945a: add charger driver for ACT8945A
>   power: add documentation for ACT8945A's charger DT bindings
> 
>  .../devicetree/bindings/power/act8945a-charger.txt |   33 ++
>  drivers/power/Kconfig                              |    7 +
>  drivers/power/Makefile                             |    1 +
>  drivers/power/act8945a_charger.c                   |  375 ++++++++++++++++++++
>  4 files changed, 416 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/power/act8945a-charger.txt
>  create mode 100644 drivers/power/act8945a_charger.c
> 

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

[toc] | [prev] | [next] | [standalone]


#1313790 — RE: [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD

From"Yang, Wenyou" <Wenyou.Yang@atmel.com>
Date2016-01-21 02:20 +0100
SubjectRE: [PATCH v6 0/2] power: act8945a: add charger driver for the sub-device of ACT8945A MFD
Message-ID<qTc4N-6fQ-1@gated-at.bofh.it>
In reply to#1313143

> -----Original Message-----
> From: Lee Jones [mailto:lee.jones@linaro.org]
> Sent: 2016年1月20日 19:32
> To: Yang, Wenyou <Wenyou.Yang@atmel.com>
> Cc: Sebastian Reichel <sre@kernel.org>; Dmitry Eremin-Solenikov
> <dbaryshkov@gmail.com>; David Woodhouse <dwmw2@infradead.org>; Rob
> Herring <robh+dt@kernel.org>; Pawel Moll <pawel.moll@arm.com>; Mark
> Rutland <mark.rutland@arm.com>; Ian Campbell <ijc+devicetree@hellion.org.uk>;
> Kumar Gala <galak@codeaurora.org>; Krzysztof Kozlowski
> <k.kozlowski@samsung.com>; Javier Martinez Canillas <javier@dowhile0.org>;
> Peter Korsgaard <jacmet@gmail.com>; Ferre, Nicolas
> <Nicolas.FERRE@atmel.com>; linux-arm-kernel@lists.infradead.org; linux-
> kernel@vger.kernel.org; linux-pm@vger.kernel.org
> Subject: Re: [PATCH v6 0/2] power: act8945a: add charger driver for the sub-
> device of ACT8945A MFD
> 
> It really is unacceptable to be sending out so many versions at such short
> intervals, essentially spamming the list.  This infraction is worsened by the
> amount of people you have on CC, most of them for no reason.  This set shouldn't
> hit my inbox at all, let alone 4 times in one day!

Sorry!

Next time I will be careful.

> 
> > The ACT8945A is a Multi Function Device with the following subdevices:
> >  - Regulator
> >  - Charger
> >
> > This patch set is to add regulator driver for ACT8945A.
> > It is based on the patch set:
> >
> > http://lists.infradead.org/pipermail/linux-arm-kernel/2016-January/400
> > 534.html
> >
> > Changes in v6:
> >  - change the type value to unsigned int.
> >
> > Changes in v5:
> >  - remove spare spaces after #define.
> >  - add OF match table.
> >  - collect Reviewed-by from Krzysztof.
> >
> > Changes in v4:
> >  - use spaces after #define, not tabs.
> >  - use BIT(n) macros to substitute (0x01 << x).
> >  - change dt properties with more legible name.
> >  - change the properties with more legible name, clearer description.
> >
> > Changes in v3:
> >  - update the file header with short version license and author line.
> >  - remove unused member of struct act8945a_charger, dev.
> >  - action due to removing the member of stuct act8945a_dev, dev.
> >  - remove the unnecessary print out.
> >  - remove the unnecessary act8945a_charger_remove().
> >  - fix align of the code-style.
> >
> > Changes in v2:
> >  1./ Substitute of_property_read_bool() for of_get_property().
> >  2./ Substitute devm_power_supply_register() for power_supply_register().
> >  3./ Use module_platform_driver(), instead of subsys_initcall().
> >  4./ Substitute MODULE_LICENSE("GPL") for MODULE_LICENSE("GPL v2").
> >
> > Wenyou Yang (2):
> >   power: act8945a: add charger driver for ACT8945A
> >   power: add documentation for ACT8945A's charger DT bindings
> >
> >  .../devicetree/bindings/power/act8945a-charger.txt |   33 ++
> >  drivers/power/Kconfig                              |    7 +
> >  drivers/power/Makefile                             |    1 +
> >  drivers/power/act8945a_charger.c                   |  375 ++++++++++++++++++++
> >  4 files changed, 416 insertions(+)
> >  create mode 100644
> > Documentation/devicetree/bindings/power/act8945a-charger.txt
> >  create mode 100644 drivers/power/act8945a_charger.c
> >
> 
> --
> Lee Jones
> Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source
> software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog


Best Regards,
Wenyou Yang

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web