linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Add max7360 mfd driver and DT documentation
@ 2017-04-25  8:15 Valentin Sitdikov
  2017-04-25  8:15 ` [PATCH 1/2] Add DT bindings documentation for the max7360 mfd driver Valentin Sitdikov
  2017-04-25  8:15 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
  0 siblings, 2 replies; 10+ messages in thread
From: Valentin Sitdikov @ 2017-04-25  8:15 UTC (permalink / raw)
  To: lee.jones, robh+dt, mark.rutland, devicetree, linux-kernel
  Cc: Valentin Sitdikov

This series add initial support of mfd core driver for max7360 chip

Andrei Dranitca (1):
  mfd: max7360: Add mfd core device driver

Valentin Sitdikov (1):
  Add DT bindings documentation for the max7360 mfd driver

 Documentation/devicetree/bindings/mfd/max7360.txt |  72 ++++
 drivers/mfd/Kconfig                               |  16 +
 drivers/mfd/Makefile                              |   1 +
 drivers/mfd/max7360.c                             | 393 ++++++++++++++++++++++
 include/linux/mfd/max7360.h                       | 130 +++++++
 5 files changed, 612 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/max7360.txt
 create mode 100644 drivers/mfd/max7360.c
 create mode 100644 include/linux/mfd/max7360.h

-- 
2.9.3

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v2 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation
@ 2017-05-18  8:46 Valentin Sitdikov
  2017-05-18  8:46 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
  0 siblings, 1 reply; 10+ messages in thread
From: Valentin Sitdikov @ 2017-05-18  8:46 UTC (permalink / raw)
  To: lee.jones, robh+dt, mark.rutland, devicetree, linux-kernel
  Cc: Valentin Sitdikov

This series add initial support of mfd core driver for max7360 chip

Andrei Dranitca (1):
  mfd: max7360: Add mfd core device driver

Valentin Sitdikov (1):
  dt-bindings: Add DT bindings documentation for the max7360 mfd driver

 Documentation/devicetree/bindings/mfd/max7360.txt |  72 ++++
 drivers/mfd/Kconfig                               |  16 +
 drivers/mfd/Makefile                              |   1 +
 drivers/mfd/max7360.c                             | 397 ++++++++++++++++++++++
 include/linux/mfd/max7360.h                       | 130 +++++++
 5 files changed, 616 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/max7360.txt
 create mode 100644 drivers/mfd/max7360.c
 create mode 100644 include/linux/mfd/max7360.h

-- 
2.9.3

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v3 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation
@ 2017-06-02 16:21 Valentin Sitdikov
  2017-06-02 16:21 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
  0 siblings, 1 reply; 10+ messages in thread
From: Valentin Sitdikov @ 2017-06-02 16:21 UTC (permalink / raw)
  To: lee.jones, robh+dt, mark.rutland, devicetree, linux-kernel
  Cc: Valentin Sitdikov

This series add initial support of mfd core driver for max7360 chip

Andrei Dranitca (1):
  mfd: max7360: Add mfd core device driver

Valentin Sitdikov (1):
  dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd
    driver

---
Changes since v1:

  - Use proper node names
  - Drop unused addresses in node names
  - Fix description of interrupt-names property

Changes since v2:

  - Fix rotary-encoder node name
  - Add description of interrupts property
  - Drop unused code
  - Comment max7360 structure
  - Add comments to the code
 
 Documentation/devicetree/bindings/mfd/max7360.txt |  74 ++++++
 drivers/mfd/Kconfig                               |  16 ++
 drivers/mfd/Makefile                              |   1 +
 drivers/mfd/max7360.c                             | 302 ++++++++++++++++++++++
 include/linux/mfd/max7360.h                       |  90 +++++++
 5 files changed, 483 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/max7360.txt
 create mode 100644 drivers/mfd/max7360.c
 create mode 100644 include/linux/mfd/max7360.h

-- 
2.9.3

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v4 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation
@ 2017-06-13 12:20 Valentin Sitdikov
  2017-06-13 12:20 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
  0 siblings, 1 reply; 10+ messages in thread
From: Valentin Sitdikov @ 2017-06-13 12:20 UTC (permalink / raw)
  To: lee.jones, robh+dt, mark.rutland, devicetree, linux-kernel
  Cc: Valentin Sitdikov

This series add initial support of mfd core driver for max7360 chip

Andrei Dranitca (1):
  mfd: max7360: Add mfd core device driver

Valentin Sitdikov (1):
  dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd
    driver

---
Changes since v1:

  - Use proper node names
  - Drop unused addresses in node names
  - Fix description of interrupt-names property

Changes since v2:

  - Fix rotary-encoder node name
  - Add description of interrupts property
  - Drop unused code
  - Comment max7360 structure
  - Add comments to the code
 
Changes since v3:

  - Fix formatting
  - Use devm_mfd_add_devices

Andrei Dranitca (1):
  mfd: max7360: Add mfd core device driver

Valentin Sitdikov (1):
  dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd
    driver

 Documentation/devicetree/bindings/mfd/max7360.txt |  74 ++++++
 drivers/mfd/Kconfig                               |  16 ++
 drivers/mfd/Makefile                              |   1 +
 drivers/mfd/max7360.c                             | 291 ++++++++++++++++++++++
 include/linux/mfd/max7360.h                       |  90 +++++++
 5 files changed, 472 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mfd/max7360.txt
 create mode 100644 drivers/mfd/max7360.c
 create mode 100644 include/linux/mfd/max7360.h

-- 
2.9.3

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

end of thread, other threads:[~2017-06-13 13:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-25  8:15 [PATCH 0/2] Add max7360 mfd driver and DT documentation Valentin Sitdikov
2017-04-25  8:15 ` [PATCH 1/2] Add DT bindings documentation for the max7360 mfd driver Valentin Sitdikov
2017-04-28 19:23   ` Rob Herring
2017-04-25  8:15 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
2017-05-18  8:46 [PATCH v2 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation Valentin Sitdikov
2017-05-18  8:46 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
2017-05-22 11:54   ` Lee Jones
2017-06-02 16:21 [PATCH v3 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation Valentin Sitdikov
2017-06-02 16:21 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
2017-06-05  9:29   ` Lee Jones
2017-06-13 12:20 [PATCH v4 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation Valentin Sitdikov
2017-06-13 12:20 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
2017-06-13 13:41   ` Vladimir Zapolskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).