All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] dt-bindings: mfd: Add max7360 mfd driver and DT documentation
@ 2017-05-18  8:46 ` Valentin Sitdikov
  0 siblings, 0 replies; 19+ 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] 19+ 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   ` Valentin Sitdikov
  0 siblings, 1 reply; 19+ 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] 19+ 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   ` Valentin Sitdikov
  0 siblings, 1 reply; 19+ 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] 19+ messages in thread

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

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` Valentin Sitdikov
2017-05-18  8:46 ` [PATCH 1/2] dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd driver Valentin Sitdikov
2017-05-18  8:46   ` Valentin Sitdikov
2017-05-22 11:11   ` Lee Jones
2017-05-22 11:11     ` Lee Jones
2017-05-23 14:24   ` Rob Herring
2017-05-23 14:24     ` Rob Herring
2017-05-18  8:46 ` [PATCH 2/2] mfd: max7360: Add mfd core device driver Valentin Sitdikov
2017-05-18  8:46   ` Valentin Sitdikov
2017-05-22 11:54   ` Lee Jones
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 1/2] dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd driver Valentin Sitdikov
2017-06-02 16:21   ` Valentin Sitdikov
2017-06-05  9:23   ` 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 1/2] dt-bindings: mfd: Add DT bindings documentation for the max7360 mfd driver Valentin Sitdikov
2017-06-13 12:20   ` Valentin Sitdikov
2017-06-13 13:28   ` Vladimir Zapolskiy
2017-06-13 13:28     ` Vladimir Zapolskiy

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.