linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mfd: tmio: move register macros to tmio_core.c
@ 2017-11-07  8:14 Masahiro Yamada
  2017-11-20 20:52 ` Wolfram Sang
  2017-11-29 11:36 ` Lee Jones
  0 siblings, 2 replies; 3+ messages in thread
From: Masahiro Yamada @ 2017-11-07  8:14 UTC (permalink / raw)
  To: Lee Jones
  Cc: Simon Horman, Wolfram Sang, Yoshihiro Shimoda, Masahiro Yamada,
	linux-mmc, linux-kernel

These registers are only used in drivers/mfd/tmio_core.c

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 drivers/mfd/tmio_core.c  | 20 ++++++++++++++++++++
 include/linux/mfd/tmio.h | 20 --------------------
 2 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/drivers/mfd/tmio_core.c b/drivers/mfd/tmio_core.c
index 83af78c..ebf54cc 100644
--- a/drivers/mfd/tmio_core.c
+++ b/drivers/mfd/tmio_core.c
@@ -9,6 +9,26 @@
 #include <linux/export.h>
 #include <linux/mfd/tmio.h>
 
+#define CNF_CMD     0x04
+#define CNF_CTL_BASE   0x10
+#define CNF_INT_PIN  0x3d
+#define CNF_STOP_CLK_CTL 0x40
+#define CNF_GCLK_CTL 0x41
+#define CNF_SD_CLK_MODE 0x42
+#define CNF_PIN_STATUS 0x44
+#define CNF_PWR_CTL_1 0x48
+#define CNF_PWR_CTL_2 0x49
+#define CNF_PWR_CTL_3 0x4a
+#define CNF_CARD_DETECT_MODE 0x4c
+#define CNF_SD_SLOT 0x50
+#define CNF_EXT_GCLK_CTL_1 0xf0
+#define CNF_EXT_GCLK_CTL_2 0xf1
+#define CNF_EXT_GCLK_CTL_3 0xf9
+#define CNF_SD_LED_EN_1 0xfa
+#define CNF_SD_LED_EN_2 0xfe
+
+#define   SDCREN 0x2   /* Enable access to MMC CTL regs. (flag in COMMAND_REG)*/
+
 int tmio_core_mmc_enable(void __iomem *cnf, int shift, unsigned long base)
 {
 	/* Enable the MMC/SD Control registers */
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h
index e1cfe91..396a103c 100644
--- a/include/linux/mfd/tmio.h
+++ b/include/linux/mfd/tmio.h
@@ -25,26 +25,6 @@
 		writew((val) >> 16, (addr) + 2); \
 	} while (0)
 
-#define CNF_CMD     0x04
-#define CNF_CTL_BASE   0x10
-#define CNF_INT_PIN  0x3d
-#define CNF_STOP_CLK_CTL 0x40
-#define CNF_GCLK_CTL 0x41
-#define CNF_SD_CLK_MODE 0x42
-#define CNF_PIN_STATUS 0x44
-#define CNF_PWR_CTL_1 0x48
-#define CNF_PWR_CTL_2 0x49
-#define CNF_PWR_CTL_3 0x4a
-#define CNF_CARD_DETECT_MODE 0x4c
-#define CNF_SD_SLOT 0x50
-#define CNF_EXT_GCLK_CTL_1 0xf0
-#define CNF_EXT_GCLK_CTL_2 0xf1
-#define CNF_EXT_GCLK_CTL_3 0xf9
-#define CNF_SD_LED_EN_1 0xfa
-#define CNF_SD_LED_EN_2 0xfe
-
-#define   SDCREN 0x2   /* Enable access to MMC CTL regs. (flag in COMMAND_REG)*/
-
 #define sd_config_write8(base, shift, reg, val) \
 	tmio_iowrite8((val), (base) + ((reg) << (shift)))
 #define sd_config_write16(base, shift, reg, val) \
-- 
2.7.4

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

* Re: [PATCH] mfd: tmio: move register macros to tmio_core.c
  2017-11-07  8:14 [PATCH] mfd: tmio: move register macros to tmio_core.c Masahiro Yamada
@ 2017-11-20 20:52 ` Wolfram Sang
  2017-11-29 11:36 ` Lee Jones
  1 sibling, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2017-11-20 20:52 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Lee Jones, Simon Horman, Wolfram Sang, Yoshihiro Shimoda,
	linux-mmc, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 284 bytes --]

On Tue, Nov 07, 2017 at 05:14:12PM +0900, Masahiro Yamada wrote:
> These registers are only used in drivers/mfd/tmio_core.c
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Well, yes, why not...

Acked-by: Wolfram Sang <wsa+renesas@sang-engineering.com>


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH] mfd: tmio: move register macros to tmio_core.c
  2017-11-07  8:14 [PATCH] mfd: tmio: move register macros to tmio_core.c Masahiro Yamada
  2017-11-20 20:52 ` Wolfram Sang
@ 2017-11-29 11:36 ` Lee Jones
  1 sibling, 0 replies; 3+ messages in thread
From: Lee Jones @ 2017-11-29 11:36 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Simon Horman, Wolfram Sang, Yoshihiro Shimoda, linux-mmc, linux-kernel

On Tue, 07 Nov 2017, Masahiro Yamada wrote:

> These registers are only used in drivers/mfd/tmio_core.c
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
> 
>  drivers/mfd/tmio_core.c  | 20 ++++++++++++++++++++
>  include/linux/mfd/tmio.h | 20 --------------------
>  2 files changed, 20 insertions(+), 20 deletions(-)

Applied, thanks.

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

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

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-07  8:14 [PATCH] mfd: tmio: move register macros to tmio_core.c Masahiro Yamada
2017-11-20 20:52 ` Wolfram Sang
2017-11-29 11:36 ` Lee Jones

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