linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/21] Verbatim device names and devm_nvmem_(un)register()
@ 2018-01-01 23:22 Andrey Smirnov
  2018-01-01 23:22 ` [PATCH v2 01/21] nvmem: core: Allow specifying device name verbatim Andrey Smirnov
                   ` (20 more replies)
  0 siblings, 21 replies; 26+ messages in thread
From: Andrey Smirnov @ 2018-01-01 23:22 UTC (permalink / raw)
  To: linux-arm-kernel

Srinivas, all:

This patchset contains various small changes that I recently made to
NVMEM, more specifically:

 - Patches 1 and 2 are two changes I am hoping are acceptable upstream

 - Patches 3 to 14 are a follow up to patch 2

 - Patches 15 to 21 are just trivial fixups and I am more than happy
   to drop them if they seem to add more pointless churn rather then
   value.

Feedback is appreciated!

Thanks,
Andrey Smirnov


Changes since [v1]:

 - Fixed a build break detected by kbuild test robot

 - Added a patch to unconditionally enable COMPILE_TEST for meson-efuse

 - Dropped Joachim Eastwood from CC list due to bouncing e-mail


[v1] lkml.kernel.org/r/20171227225956.14442-1-andrew.smirnov at gmail.com


Andrey Smirnov (21):
  nvmem: core: Allow specifying device name verbatim
  nvmem: Introduce devm_nvmem_(un)register()
  nvmem: vf610-ocotp: Convert to use devm_nvmem_register()
  nvmem: imx-ocotp: Convert to use devm_nvmem_register()
  nvmem: uniphier-efuse: Convert to use devm_nvmem_register()
  nvmem: snvs_lgpr: Convert to use devm_nvmem_register()
  nvmem: rockchip-efuse: Convert to use devm_nvmem_register()
  nvmem: qfprom: Convert to use devm_nvmem_register()
  nvmem: mtk-efuse: Convert to use devm_nvmem_register()
  nvmem: meson-mx-efuse: Convert to use devm_nvmem_register()
  nvmem: meson-efuse: Convert to use devm_nvmem_register()
  nvmem: lpc18xx_otp: Convert to use devm_nvmem_register()
  nvmem: imx-iim: Convert to use devm_nvmem_register()
  nvmem: bcm-ocotp: Convert to use devm_nvmem_register()
  nvmem: meson-efuse: Do no gate COMPILE_TEST with MESON_SM
  nvmem: snvs_lpgpr: Convert commas to semicolons
  nvmem: rockchip-efuse: Make use of of_device_get_match_data()
  nvmem: vf610-ocotp: Do not use "&pdev->dev" explicitly
  nvmem: rockchip-efuse: Do not use "&pdev->dev" explicitly
  nvmem: imx-iim: Do not use "&pdev->dev" explicitly
  nvmem: bcm-ocotp: Do not use "&pdev->dev" explicitly

 drivers/nvmem/Kconfig          |  2 +-
 drivers/nvmem/bcm-ocotp.c      | 15 ++----------
 drivers/nvmem/core.c           | 52 +++++++++++++++++++++++++++++++++++++++---
 drivers/nvmem/imx-iim.c        | 14 ++----------
 drivers/nvmem/imx-ocotp.c      | 12 +---------
 drivers/nvmem/lpc18xx_otp.c    | 12 +---------
 drivers/nvmem/meson-efuse.c    | 12 +---------
 drivers/nvmem/meson-mx-efuse.c | 12 +---------
 drivers/nvmem/mtk-efuse.c      | 12 +---------
 drivers/nvmem/qfprom.c         | 12 +---------
 drivers/nvmem/rockchip-efuse.c | 28 ++++++++---------------
 drivers/nvmem/snvs_lpgpr.c     | 26 +++++++--------------
 drivers/nvmem/uniphier-efuse.c | 12 +---------
 drivers/nvmem/vf610-ocotp.c    | 15 ++----------
 include/linux/nvmem-provider.h | 17 ++++++++++++++
 15 files changed, 97 insertions(+), 156 deletions(-)

-- 
2.14.3

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

end of thread, other threads:[~2018-01-02 18:40 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-01 23:22 [PATCH v2 00/21] Verbatim device names and devm_nvmem_(un)register() Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 01/21] nvmem: core: Allow specifying device name verbatim Andrey Smirnov
2018-01-02 11:44   ` Srinivas Kandagatla
2018-01-02 18:40     ` Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 02/21] nvmem: Introduce devm_nvmem_(un)register() Andrey Smirnov
2018-01-02 11:44   ` Srinivas Kandagatla
2018-01-02 18:40     ` Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 03/21] nvmem: vf610-ocotp: Convert to use devm_nvmem_register() Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 04/21] nvmem: imx-ocotp: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 05/21] nvmem: uniphier-efuse: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 06/21] nvmem: snvs_lgpr: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 07/21] nvmem: rockchip-efuse: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 08/21] nvmem: qfprom: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 09/21] nvmem: mtk-efuse: " Andrey Smirnov
2018-01-01 23:22 ` [PATCH v2 10/21] nvmem: meson-mx-efuse: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 11/21] nvmem: meson-efuse: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 12/21] nvmem: lpc18xx_otp: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 13/21] nvmem: imx-iim: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 14/21] nvmem: bcm-ocotp: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 15/21] nvmem: meson-efuse: Do no gate COMPILE_TEST with MESON_SM Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 16/21] nvmem: snvs_lpgpr: Convert commas to semicolons Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 17/21] nvmem: rockchip-efuse: Make use of of_device_get_match_data() Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 18/21] nvmem: vf610-ocotp: Do not use "&pdev->dev" explicitly Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 19/21] nvmem: rockchip-efuse: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 20/21] nvmem: imx-iim: " Andrey Smirnov
2018-01-01 23:23 ` [PATCH v2 21/21] nvmem: bcm-ocotp: " Andrey Smirnov

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).