diff mbox series

[U-Boot,v3,2/3] configs: move RTC_MV config from mv-plug-common.h to boards

Message ID 20180807074146.5071-2-judge.packham@gmail.com
State Changes Requested
Delegated to: Stefan Roese
Headers show
Series [U-Boot,v3,1/3] configs: kirkwood: ds109: switch to DM_I2C | expand

Commit Message

Chris Packham Aug. 7, 2018, 7:41 a.m. UTC
To aid in migrating CONFIG_RTC_MV to Kconfig move the definition of it
from mv-plug-common.h to the board config headers that nest it.

Signed-off-by: Chris Packham <judge.packham@gmail.com>
---

Changes in v3: None
Changes in v2: None

 include/configs/dreamplug.h      | 4 ++++
 include/configs/ds109.h          | 4 ++++
 include/configs/guruplug.h       | 4 ++++
 include/configs/mv-plug-common.h | 7 -------
 include/configs/sheevaplug.h     | 4 ++++
 5 files changed, 16 insertions(+), 7 deletions(-)
diff mbox series

Patch

diff --git a/include/configs/dreamplug.h b/include/configs/dreamplug.h
index 1c94bf9fa1bf..742232d2d660 100644
--- a/include/configs/dreamplug.h
+++ b/include/configs/dreamplug.h
@@ -27,6 +27,10 @@ 
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/ds109.h b/include/configs/ds109.h
index c06f0058deb5..f8d663714239 100644
--- a/include/configs/ds109.h
+++ b/include/configs/ds109.h
@@ -30,6 +30,10 @@ 
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/guruplug.h b/include/configs/guruplug.h
index 739ab320f637..3ce021abea84 100644
--- a/include/configs/guruplug.h
+++ b/include/configs/guruplug.h
@@ -25,6 +25,10 @@ 
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */
diff --git a/include/configs/mv-plug-common.h b/include/configs/mv-plug-common.h
index 81c07a889a36..f424e2cc6c52 100644
--- a/include/configs/mv-plug-common.h
+++ b/include/configs/mv-plug-common.h
@@ -22,11 +22,4 @@ 
  */
 #include "mv-common.h"
 
-/*
- * RTC driver configuration
- */
-#ifdef CONFIG_CMD_DATE
-#define CONFIG_RTC_MV
-#endif /* CONFIG_CMD_DATE */
-
 #endif /* _CONFIG_MARVELL_PLUG_H */
diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h
index deec71734dc7..12e38b3f12dc 100644
--- a/include/configs/sheevaplug.h
+++ b/include/configs/sheevaplug.h
@@ -29,6 +29,10 @@ 
  */
 #include "mv-plug-common.h"
 
+#ifdef CONFIG_CMD_DATE
+#define CONFIG_RTC_MV
+#endif /* CONFIG_CMD_DATE */
+
 /*
  *  Environment variables configurations
  */