All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/4] Set name of regmap_config
@ 2018-03-12  9:51 ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, linux-rtc, Sylvain Lemieux,
	Michael Turquette, Alessandro Zummo, Stephen Boyd,
	Gabriel Fernandez, linux-clk, Alexandre Belloni, Russell King,
	Nicolas Ferre, Jerome Brunet, Vladimir Zapolskiy


After 9b947a13e7f6 ("regmap: use debugfs even when no device"), we are
allowing regmap to create debugfs without a valid device. Some of them
would end up using "dummy*" as debugfs name.

This series try to set names in some regmap_config to avoid that.


Changes in v5:
CC lee.jones@linaro.org

Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3:
Modify commit message.

Jeffy Chen (4):
  mfd: syscon: Set name of regmap_config
  rtc: at91sam9: Set name of regmap_config
  clk: lpc32xx: Set name of regmap_config
  ARM: rockchip: Set name of regmap_config

 arch/arm/mach-rockchip/platsmp.c | 1 +
 drivers/clk/nxp/clk-lpc32xx.c    | 1 +
 drivers/mfd/syscon.c             | 1 +
 drivers/rtc/rtc-at91sam9.c       | 1 +
 4 files changed, 4 insertions(+)

-- 
2.11.0

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

* [PATCH v5 0/4] Set name of regmap_config
@ 2018-03-12  9:51 ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav


After 9b947a13e7f6 ("regmap: use debugfs even when no device"), we are
allowing regmap to create debugfs without a valid device. Some of them
would end up using "dummy*" as debugfs name.

This series try to set names in some regmap_config to avoid that.


Changes in v5:
CC lee.jones@linaro.org

Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3:
Modify commit message.

Jeffy Chen (4):
  mfd: syscon: Set name of regmap_config
  rtc: at91sam9: Set name of regmap_config
  clk: lpc32xx: Set name of regmap_config
  ARM: rockchip: Set name of regmap_config

 arch/arm/mach-rockchip/platsmp.c | 1 +
 drivers/clk/nxp/clk-lpc32xx.c    | 1 +
 drivers/mfd/syscon.c             | 1 +
 drivers/rtc/rtc-at91sam9.c       | 1 +
 4 files changed, 4 insertions(+)

-- 
2.11.0

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

* [PATCH v5 0/4] Set name of regmap_config
@ 2018-03-12  9:51 ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-arm-kernel


After 9b947a13e7f6 ("regmap: use debugfs even when no device"), we are
allowing regmap to create debugfs without a valid device. Some of them
would end up using "dummy*" as debugfs name.

This series try to set names in some regmap_config to avoid that.


Changes in v5:
CC lee.jones at linaro.org

Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3:
Modify commit message.

Jeffy Chen (4):
  mfd: syscon: Set name of regmap_config
  rtc: at91sam9: Set name of regmap_config
  clk: lpc32xx: Set name of regmap_config
  ARM: rockchip: Set name of regmap_config

 arch/arm/mach-rockchip/platsmp.c | 1 +
 drivers/clk/nxp/clk-lpc32xx.c    | 1 +
 drivers/mfd/syscon.c             | 1 +
 drivers/rtc/rtc-at91sam9.c       | 1 +
 4 files changed, 4 insertions(+)

-- 
2.11.0

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

* [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
  2018-03-12  9:51 ` Jeffy Chen
  (?)
@ 2018-03-12  9:51   ` Jeffy Chen
  -1 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5:
CC lee.jones@linaro.org

Changes in v4: None
Changes in v3:
Modify commit message.

 drivers/mfd/syscon.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index fc9ba0ea4e44..b6d05cd934e6 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
 	syscon_config.reg_stride = reg_io_width;
 	syscon_config.val_bits = reg_io_width * 8;
 	syscon_config.max_register = resource_size(&res) - reg_io_width;
+	syscon_config.name = of_node_full_name(np);
 
 	regmap = regmap_init_mmio(NULL, base, &syscon_config);
 	if (IS_ERR(regmap)) {
-- 
2.11.0

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

* [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5:
CC lee.jones@linaro.org

Changes in v4: None
Changes in v3:
Modify commit message.

 drivers/mfd/syscon.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index fc9ba0ea4e44..b6d05cd934e6 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
 	syscon_config.reg_stride = reg_io_width;
 	syscon_config.val_bits = reg_io_width * 8;
 	syscon_config.max_register = resource_size(&res) - reg_io_width;
+	syscon_config.name = of_node_full_name(np);
 
 	regmap = regmap_init_mmio(NULL, base, &syscon_config);
 	if (IS_ERR(regmap)) {
-- 
2.11.0

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

* [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-arm-kernel

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5:
CC lee.jones at linaro.org

Changes in v4: None
Changes in v3:
Modify commit message.

 drivers/mfd/syscon.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index fc9ba0ea4e44..b6d05cd934e6 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
 	syscon_config.reg_stride = reg_io_width;
 	syscon_config.val_bits = reg_io_width * 8;
 	syscon_config.max_register = resource_size(&res) - reg_io_width;
+	syscon_config.name = of_node_full_name(np);
 
 	regmap = regmap_init_mmio(NULL, base, &syscon_config);
 	if (IS_ERR(regmap)) {
-- 
2.11.0

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

* [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
  2018-03-12  9:51 ` Jeffy Chen
  (?)
@ 2018-03-12  9:51   ` Jeffy Chen
  -1 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, linux-rtc, Alessandro Zummo,
	Nicolas Ferre

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3: None

 drivers/rtc/rtc-at91sam9.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
index 7418a763ce52..ee71e647fd43 100644
--- a/drivers/rtc/rtc-at91sam9.c
+++ b/drivers/rtc/rtc-at91sam9.c
@@ -349,6 +349,7 @@ static const struct rtc_class_ops at91_rtc_ops = {
 };
 
 static const struct regmap_config gpbr_regmap_config = {
+	.name = "gpbr",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3: None

 drivers/rtc/rtc-at91sam9.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
index 7418a763ce52..ee71e647fd43 100644
--- a/drivers/rtc/rtc-at91sam9.c
+++ b/drivers/rtc/rtc-at91sam9.c
@@ -349,6 +349,7 @@ static const struct rtc_class_ops at91_rtc_ops = {
 };
 
 static const struct regmap_config gpbr_regmap_config = {
+	.name = "gpbr",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-arm-kernel

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4:
Not to use rtc dev to init regmap, the gpbr is not directly related to
the rtc.

Changes in v3: None

 drivers/rtc/rtc-at91sam9.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
index 7418a763ce52..ee71e647fd43 100644
--- a/drivers/rtc/rtc-at91sam9.c
+++ b/drivers/rtc/rtc-at91sam9.c
@@ -349,6 +349,7 @@ static const struct rtc_class_ops at91_rtc_ops = {
 };
 
 static const struct regmap_config gpbr_regmap_config = {
+	.name = "gpbr",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
  2018-03-12  9:51 ` Jeffy Chen
  (?)
@ 2018-03-12  9:51   ` Jeffy Chen
  -1 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, Sylvain Lemieux,
	Michael Turquette, Stephen Boyd, Gabriel Fernandez, linux-clk,
	Alexandre Belloni, Jerome Brunet, Vladimir Zapolskiy

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 drivers/clk/nxp/clk-lpc32xx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
index f5d815f577e0..a2a0a7f3bc57 100644
--- a/drivers/clk/nxp/clk-lpc32xx.c
+++ b/drivers/clk/nxp/clk-lpc32xx.c
@@ -67,6 +67,7 @@
 #define LPC32XX_USB_CLK_STS		0xF8
 
 static struct regmap_config lpc32xx_scb_regmap_config = {
+	.name = "lpc32xx-scb",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 drivers/clk/nxp/clk-lpc32xx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
index f5d815f577e0..a2a0a7f3bc57 100644
--- a/drivers/clk/nxp/clk-lpc32xx.c
+++ b/drivers/clk/nxp/clk-lpc32xx.c
@@ -67,6 +67,7 @@
 #define LPC32XX_USB_CLK_STS		0xF8
 
 static struct regmap_config lpc32xx_scb_regmap_config = {
+	.name = "lpc32xx-scb",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-arm-kernel

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 drivers/clk/nxp/clk-lpc32xx.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
index f5d815f577e0..a2a0a7f3bc57 100644
--- a/drivers/clk/nxp/clk-lpc32xx.c
+++ b/drivers/clk/nxp/clk-lpc32xx.c
@@ -67,6 +67,7 @@
 #define LPC32XX_USB_CLK_STS		0xF8
 
 static struct regmap_config lpc32xx_scb_regmap_config = {
+	.name = "lpc32xx-scb",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
  2018-03-12  9:51 ` Jeffy Chen
  (?)
@ 2018-03-12  9:51   ` Jeffy Chen
  -1 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, Russell King

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 arch/arm/mach-rockchip/platsmp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c
index ecec340ca345..51984a40b097 100644
--- a/arch/arm/mach-rockchip/platsmp.c
+++ b/arch/arm/mach-rockchip/platsmp.c
@@ -208,6 +208,7 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node)
 }
 
 static const struct regmap_config rockchip_pmu_regmap_config = {
+	.name = "rockchip-pmu",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Jeffy Chen, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 arch/arm/mach-rockchip/platsmp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c
index ecec340ca345..51984a40b097 100644
--- a/arch/arm/mach-rockchip/platsmp.c
+++ b/arch/arm/mach-rockchip/platsmp.c
@@ -208,6 +208,7 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node)
 }
 
 static const struct regmap_config rockchip_pmu_regmap_config = {
+	.name = "rockchip-pmu",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
@ 2018-03-12  9:51   ` Jeffy Chen
  0 siblings, 0 replies; 30+ messages in thread
From: Jeffy Chen @ 2018-03-12  9:51 UTC (permalink / raw)
  To: linux-arm-kernel

We are now allowing to register debugfs without a valid device, and not
having a valid name will end up using "dummy*" to create debugfs dir.

Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---

Changes in v5: None
Changes in v4: None
Changes in v3: None

 arch/arm/mach-rockchip/platsmp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-rockchip/platsmp.c b/arch/arm/mach-rockchip/platsmp.c
index ecec340ca345..51984a40b097 100644
--- a/arch/arm/mach-rockchip/platsmp.c
+++ b/arch/arm/mach-rockchip/platsmp.c
@@ -208,6 +208,7 @@ static int __init rockchip_smp_prepare_sram(struct device_node *node)
 }
 
 static const struct regmap_config rockchip_pmu_regmap_config = {
+	.name = "rockchip-pmu",
 	.reg_bits = 32,
 	.val_bits = 32,
 	.reg_stride = 4,
-- 
2.11.0

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

* Re: [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
  2018-03-12  9:51   ` Jeffy Chen
  (?)
@ 2018-03-12 10:11     ` Heiko Stuebner
  -1 siblings, 0 replies; 30+ messages in thread
From: Heiko Stuebner @ 2018-03-12 10:11 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, alexandre.belloni, Guenter Roeck,
	Arnd Bergmann, Joseph Lo, Rob Herring, Catalin Marinas,
	lee.jones, Emil Renner Berthing, Brian Norris, Thomas Gleixner,
	Philippe Ombredanne, linux-rockchip, Kate Stewart, linux-input,
	Will Deacon, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, Russell King

Am Montag, 12. März 2018, 10:51:42 CET schrieb Jeffy Chen:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>

applied for 4.17


Thanks
Heiko

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

* Re: [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
@ 2018-03-12 10:11     ` Heiko Stuebner
  0 siblings, 0 replies; 30+ messages in thread
From: Heiko Stuebner @ 2018-03-12 10:11 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, alexandre.belloni, Guenter Roeck,
	Arnd Bergmann, Joseph Lo, Rob Herring, Catalin Marinas,
	lee.jones, Emil Renner Berthing, Brian Norris, Thomas Gleixner,
	Philippe Ombredanne, linux-rockchip, Kate Stewart, linux-input,
	Will Deacon, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

Am Montag, 12. März 2018, 10:51:42 CET schrieb Jeffy Chen:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>

applied for 4.17


Thanks
Heiko

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

* [PATCH v5 4/4] ARM: rockchip: Set name of regmap_config
@ 2018-03-12 10:11     ` Heiko Stuebner
  0 siblings, 0 replies; 30+ messages in thread
From: Heiko Stuebner @ 2018-03-12 10:11 UTC (permalink / raw)
  To: linux-arm-kernel

Am Montag, 12. M?rz 2018, 10:51:42 CET schrieb Jeffy Chen:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>

applied for 4.17


Thanks
Heiko

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

* Re: [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
  2018-03-12  9:51   ` Jeffy Chen
  (?)
@ 2018-03-12 14:06     ` Lee Jones
  -1 siblings, 0 replies; 30+ messages in thread
From: Lee Jones @ 2018-03-12 14:06 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, alexandre.belloni, Guenter Roeck,
	Arnd Bergmann, Joseph Lo, Rob Herring, Catalin Marinas,
	Emil Renner Berthing, Heiko Stuebner, Brian Norris,
	Thomas Gleixner, Philippe Ombredanne, linux-rockchip,
	Kate Stewart, linux-input, Will Deacon, Matthias Kaehlcke,
	devicetree, stephen lu, Greg Kroah-Hartman, Arvind Yadav,
	linux-arm-kernel, Dmitry Torokhov, Mark Rutland

On Mon, 12 Mar 2018, Jeffy Chen wrote:

> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5:
> CC lee.jones@linaro.org
> 
> Changes in v4: None
> Changes in v3:
> Modify commit message.
> 
>  drivers/mfd/syscon.c | 1 +
>  1 file changed, 1 insertion(+)

Looks okay.  Applied, thanks.

> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index fc9ba0ea4e44..b6d05cd934e6 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
>  	syscon_config.reg_stride = reg_io_width;
>  	syscon_config.val_bits = reg_io_width * 8;
>  	syscon_config.max_register = resource_size(&res) - reg_io_width;
> +	syscon_config.name = of_node_full_name(np);
>  
>  	regmap = regmap_init_mmio(NULL, base, &syscon_config);
>  	if (IS_ERR(regmap)) {

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
@ 2018-03-12 14:06     ` Lee Jones
  0 siblings, 0 replies; 30+ messages in thread
From: Lee Jones @ 2018-03-12 14:06 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, alexandre.belloni, Guenter Roeck,
	Arnd Bergmann, Joseph Lo, Rob Herring, Catalin Marinas,
	Emil Renner Berthing, Heiko Stuebner, Brian Norris,
	Thomas Gleixner, Philippe Ombredanne, linux-rockchip,
	Kate Stewart, linux-input, Will Deacon, Matthias Kaehlcke,
	devicetree, stephen lu, Greg Kroah-Hartman, Arvind Yadav

On Mon, 12 Mar 2018, Jeffy Chen wrote:

> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5:
> CC lee.jones@linaro.org
> 
> Changes in v4: None
> Changes in v3:
> Modify commit message.
> 
>  drivers/mfd/syscon.c | 1 +
>  1 file changed, 1 insertion(+)

Looks okay.  Applied, thanks.

> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index fc9ba0ea4e44..b6d05cd934e6 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
>  	syscon_config.reg_stride = reg_io_width;
>  	syscon_config.val_bits = reg_io_width * 8;
>  	syscon_config.max_register = resource_size(&res) - reg_io_width;
> +	syscon_config.name = of_node_full_name(np);
>  
>  	regmap = regmap_init_mmio(NULL, base, &syscon_config);
>  	if (IS_ERR(regmap)) {

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* [PATCH v5 1/4] mfd: syscon: Set name of regmap_config
@ 2018-03-12 14:06     ` Lee Jones
  0 siblings, 0 replies; 30+ messages in thread
From: Lee Jones @ 2018-03-12 14:06 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, 12 Mar 2018, Jeffy Chen wrote:

> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5:
> CC lee.jones at linaro.org
> 
> Changes in v4: None
> Changes in v3:
> Modify commit message.
> 
>  drivers/mfd/syscon.c | 1 +
>  1 file changed, 1 insertion(+)

Looks okay.  Applied, thanks.

> diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
> index fc9ba0ea4e44..b6d05cd934e6 100644
> --- a/drivers/mfd/syscon.c
> +++ b/drivers/mfd/syscon.c
> @@ -110,6 +110,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
>  	syscon_config.reg_stride = reg_io_width;
>  	syscon_config.val_bits = reg_io_width * 8;
>  	syscon_config.max_register = resource_size(&res) - reg_io_width;
> +	syscon_config.name = of_node_full_name(np);
>  
>  	regmap = regmap_init_mmio(NULL, base, &syscon_config);
>  	if (IS_ERR(regmap)) {

-- 
Lee Jones [???]
Linaro Services Technical Lead
Linaro.org ? Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
  2018-03-12  9:51   ` Jeffy Chen
  (?)
@ 2018-03-13  0:37     ` Alexandre Belloni
  -1 siblings, 0 replies; 30+ messages in thread
From: Alexandre Belloni @ 2018-03-13  0:37 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, Guenter Roeck, Arnd Bergmann, Joseph Lo,
	Rob Herring, Catalin Marinas, lee.jones, Emil Renner Berthing,
	Heiko Stuebner, Brian Norris, Thomas Gleixner,
	Philippe Ombredanne, linux-rockchip, Kate Stewart, linux-input,
	Will Deacon, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav, linux-arm-kernel,
	Dmitry Torokhov, Mark Rutland, linux-rtc, Alessandro Zummo,
	Nicolas Ferre

On 12/03/2018 at 17:51:40 +0800, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4:
> Not to use rtc dev to init regmap, the gpbr is not directly related to
> the rtc.
> 
> Changes in v3: None
> 
>  drivers/rtc/rtc-at91sam9.c | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks.

-- 
Alexandre Belloni, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
@ 2018-03-13  0:37     ` Alexandre Belloni
  0 siblings, 0 replies; 30+ messages in thread
From: Alexandre Belloni @ 2018-03-13  0:37 UTC (permalink / raw)
  To: Jeffy Chen
  Cc: linux-kernel, broonie, Guenter Roeck, Arnd Bergmann, Joseph Lo,
	Rob Herring, Catalin Marinas, lee.jones, Emil Renner Berthing,
	Heiko Stuebner, Brian Norris, Thomas Gleixner,
	Philippe Ombredanne, linux-rockchip, Kate Stewart, linux-input,
	Will Deacon, Matthias Kaehlcke, devicetree, stephen lu,
	Greg Kroah-Hartman, Arvind Yadav

On 12/03/2018 at 17:51:40 +0800, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4:
> Not to use rtc dev to init regmap, the gpbr is not directly related to
> the rtc.
> 
> Changes in v3: None
> 
>  drivers/rtc/rtc-at91sam9.c | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks.

-- 
Alexandre Belloni, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [PATCH v5 2/4] rtc: at91sam9: Set name of regmap_config
@ 2018-03-13  0:37     ` Alexandre Belloni
  0 siblings, 0 replies; 30+ messages in thread
From: Alexandre Belloni @ 2018-03-13  0:37 UTC (permalink / raw)
  To: linux-arm-kernel

On 12/03/2018 at 17:51:40 +0800, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4:
> Not to use rtc dev to init regmap, the gpbr is not directly related to
> the rtc.
> 
> Changes in v3: None
> 
>  drivers/rtc/rtc-at91sam9.c | 1 +
>  1 file changed, 1 insertion(+)

Applied, thanks.

-- 
Alexandre Belloni, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
  2018-03-12  9:51   ` Jeffy Chen
  (?)
@ 2018-03-18 21:57     ` Vladimir Zapolskiy
  -1 siblings, 0 replies; 30+ messages in thread
From: Vladimir Zapolskiy @ 2018-03-18 21:57 UTC (permalink / raw)
  To: Jeffy Chen, linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Matthias Kaehlcke, devicetree, stephen lu, Greg Kroah-Hartman,
	Arvind Yadav, linux-arm-kernel, Dmitry Torokhov, Mark Rutland,
	Sylvain Lemieux, Michael Turquette, Stephen Boyd,
	Gabriel Fernandez, linux-clk, Alexandre Belloni, Jerome Brunet

Hi Jeffy,

On 03/12/2018 11:51 AM, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4: None
> Changes in v3: None
> 
>  drivers/clk/nxp/clk-lpc32xx.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
> index f5d815f577e0..a2a0a7f3bc57 100644
> --- a/drivers/clk/nxp/clk-lpc32xx.c
> +++ b/drivers/clk/nxp/clk-lpc32xx.c
> @@ -67,6 +67,7 @@
>  #define LPC32XX_USB_CLK_STS		0xF8
>  
>  static struct regmap_config lpc32xx_scb_regmap_config = {
> +	.name = "lpc32xx-scb",

please rename it to "scb", LPC32xx SoC name is already known from the context.

When it's done, feel free to add to the next version my

Acked-by: Vladimir Zapolskiy <vz@mleia.com>

>  	.reg_bits = 32,
>  	.val_bits = 32,
>  	.reg_stride = 4,
> 

Thank you for the change.

--
With best wishes,
Vladimir

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

* Re: [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-18 21:57     ` Vladimir Zapolskiy
  0 siblings, 0 replies; 30+ messages in thread
From: Vladimir Zapolskiy @ 2018-03-18 21:57 UTC (permalink / raw)
  To: Jeffy Chen, linux-kernel, broonie, alexandre.belloni
  Cc: Kate Stewart, Mark Rutland, Emil Renner Berthing, stephen lu,
	Catalin Marinas, Michael Turquette, Will Deacon,
	Alexandre Belloni, Joseph Lo, lee.jones, linux-clk,
	Heiko Stuebner, Brian Norris, linux-rockchip, Matthias Kaehlcke,
	linux-input, Arvind Yadav, Jerome Brunet, Guenter Roeck,
	devicetree, Arnd Bergmann, Sylvain Lemieux, Rob Herring,
	Thomas Gleixner

Hi Jeffy,

On 03/12/2018 11:51 AM, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4: None
> Changes in v3: None
> 
>  drivers/clk/nxp/clk-lpc32xx.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
> index f5d815f577e0..a2a0a7f3bc57 100644
> --- a/drivers/clk/nxp/clk-lpc32xx.c
> +++ b/drivers/clk/nxp/clk-lpc32xx.c
> @@ -67,6 +67,7 @@
>  #define LPC32XX_USB_CLK_STS		0xF8
>  
>  static struct regmap_config lpc32xx_scb_regmap_config = {
> +	.name = "lpc32xx-scb",

please rename it to "scb", LPC32xx SoC name is already known from the context.

When it's done, feel free to add to the next version my

Acked-by: Vladimir Zapolskiy <vz@mleia.com>

>  	.reg_bits = 32,
>  	.val_bits = 32,
>  	.reg_stride = 4,
> 

Thank you for the change.

--
With best wishes,
Vladimir

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

* [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-18 21:57     ` Vladimir Zapolskiy
  0 siblings, 0 replies; 30+ messages in thread
From: Vladimir Zapolskiy @ 2018-03-18 21:57 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Jeffy,

On 03/12/2018 11:51 AM, Jeffy Chen wrote:
> We are now allowing to register debugfs without a valid device, and not
> having a valid name will end up using "dummy*" to create debugfs dir.
> 
> Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
> ---
> 
> Changes in v5: None
> Changes in v4: None
> Changes in v3: None
> 
>  drivers/clk/nxp/clk-lpc32xx.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/clk/nxp/clk-lpc32xx.c b/drivers/clk/nxp/clk-lpc32xx.c
> index f5d815f577e0..a2a0a7f3bc57 100644
> --- a/drivers/clk/nxp/clk-lpc32xx.c
> +++ b/drivers/clk/nxp/clk-lpc32xx.c
> @@ -67,6 +67,7 @@
>  #define LPC32XX_USB_CLK_STS		0xF8
>  
>  static struct regmap_config lpc32xx_scb_regmap_config = {
> +	.name = "lpc32xx-scb",

please rename it to "scb", LPC32xx SoC name is already known from the context.

When it's done, feel free to add to the next version my

Acked-by: Vladimir Zapolskiy <vz@mleia.com>

>  	.reg_bits = 32,
>  	.val_bits = 32,
>  	.reg_stride = 4,
> 

Thank you for the change.

--
With best wishes,
Vladimir

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

* Re: [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
  2018-03-18 21:57     ` Vladimir Zapolskiy
  (?)
@ 2018-03-19  3:59       ` JeffyChen
  -1 siblings, 0 replies; 30+ messages in thread
From: JeffyChen @ 2018-03-19  3:59 UTC (permalink / raw)
  To: Vladimir Zapolskiy, linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Matthias Kaehlcke, devicetree, stephen lu, Greg Kroah-Hartman,
	Arvind Yadav, linux-arm-kernel, Dmitry Torokhov, Mark Rutland,
	Sylvain Lemieux, Michael Turquette, Stephen Boyd,
	Gabriel Fernandez, linux-clk, Alexandre Belloni, Jerome Brunet

Hi Vladimir,

On 03/19/2018 05:57 AM, Vladimir Zapolskiy wrote:
>> >  static struct regmap_config lpc32xx_scb_regmap_config = {
>> >+	.name = "lpc32xx-scb",
> please rename it to "scb", LPC32xx SoC name is already known from the context.
>
> When it's done, feel free to add to the next version my
>
> Acked-by: Vladimir Zapolskiy<vz@mleia.com>
>

ok, will do, thanks:)

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

* Re: [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-19  3:59       ` JeffyChen
  0 siblings, 0 replies; 30+ messages in thread
From: JeffyChen @ 2018-03-19  3:59 UTC (permalink / raw)
  To: Vladimir Zapolskiy, linux-kernel, broonie, alexandre.belloni
  Cc: Guenter Roeck, Arnd Bergmann, Joseph Lo, Rob Herring,
	Catalin Marinas, lee.jones, Emil Renner Berthing, Heiko Stuebner,
	Brian Norris, Thomas Gleixner, Philippe Ombredanne,
	linux-rockchip, Kate Stewart, linux-input, Will Deacon,
	Matthias Kaehlcke, devicetree, stephen lu, Greg Kroah-Hartman,
	Arvind Yadav, linux-arm-kernel

Hi Vladimir,

On 03/19/2018 05:57 AM, Vladimir Zapolskiy wrote:
>> >  static struct regmap_config lpc32xx_scb_regmap_config = {
>> >+	.name = "lpc32xx-scb",
> please rename it to "scb", LPC32xx SoC name is already known from the context.
>
> When it's done, feel free to add to the next version my
>
> Acked-by: Vladimir Zapolskiy<vz@mleia.com>
>

ok, will do, thanks:)

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

* [PATCH v5 3/4] clk: lpc32xx: Set name of regmap_config
@ 2018-03-19  3:59       ` JeffyChen
  0 siblings, 0 replies; 30+ messages in thread
From: JeffyChen @ 2018-03-19  3:59 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Vladimir,

On 03/19/2018 05:57 AM, Vladimir Zapolskiy wrote:
>> >  static struct regmap_config lpc32xx_scb_regmap_config = {
>> >+	.name = "lpc32xx-scb",
> please rename it to "scb", LPC32xx SoC name is already known from the context.
>
> When it's done, feel free to add to the next version my
>
> Acked-by: Vladimir Zapolskiy<vz@mleia.com>
>

ok, will do, thanks:)

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

end of thread, other threads:[~2018-03-19  3:59 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-12  9:51 [PATCH v5 0/4] Set name of regmap_config Jeffy Chen
2018-03-12  9:51 ` Jeffy Chen
2018-03-12  9:51 ` Jeffy Chen
2018-03-12  9:51 ` [PATCH v5 1/4] mfd: syscon: " Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12 14:06   ` Lee Jones
2018-03-12 14:06     ` Lee Jones
2018-03-12 14:06     ` Lee Jones
2018-03-12  9:51 ` [PATCH v5 2/4] rtc: at91sam9: " Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-13  0:37   ` Alexandre Belloni
2018-03-13  0:37     ` Alexandre Belloni
2018-03-13  0:37     ` Alexandre Belloni
2018-03-12  9:51 ` [PATCH v5 3/4] clk: lpc32xx: " Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-18 21:57   ` Vladimir Zapolskiy
2018-03-18 21:57     ` Vladimir Zapolskiy
2018-03-18 21:57     ` Vladimir Zapolskiy
2018-03-19  3:59     ` JeffyChen
2018-03-19  3:59       ` JeffyChen
2018-03-19  3:59       ` JeffyChen
2018-03-12  9:51 ` [PATCH v5 4/4] ARM: rockchip: " Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12  9:51   ` Jeffy Chen
2018-03-12 10:11   ` Heiko Stuebner
2018-03-12 10:11     ` Heiko Stuebner
2018-03-12 10:11     ` Heiko Stuebner

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.