All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] m68knommu: Removing config variable DUMPTOFLASH
@ 2007-11-15  8:41 Jiri Olsa
  2007-11-15 18:24 ` [PATCH] m68knommu: Removing config variable BDM_DISABLE Marcin Ślusarz
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jiri Olsa @ 2007-11-15  8:41 UTC (permalink / raw)
  To: kernel-janitors

Removing config variable DUMPTOFLASH, since it is not used

Signed-off-by: Jiri Olsa <olsajiri@gmail.com>
---
 arch/m68knommu/Kconfig.debug |    7 -------
 arch/m68knommu/defconfig     |    1 -
 2 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/arch/m68knommu/Kconfig.debug b/arch/m68knommu/Kconfig.debug
index 9ff47bd..ed6d9a8 100644
--- a/arch/m68knommu/Kconfig.debug
+++ b/arch/m68knommu/Kconfig.debug
@@ -21,13 +21,6 @@ config BOOTPARAM_STRING
 	default 'console=ttyS0,19200'
 	depends on BOOTPARAM
 
-config DUMPTOFLASH
-	bool "Panic/Dump to FLASH"
-	depends on COLDFIRE
-	help
-	  Dump any panic of trap output into a flash memory segment
-	  for later analysis.
-
 config NO_KERNEL_MSG
 	bool "Suppress Kernel BUG Messages"
 	help
diff --git a/arch/m68knommu/defconfig b/arch/m68knommu/defconfig
index 5a0ecaa..6481130 100644
--- a/arch/m68knommu/defconfig
+++ b/arch/m68knommu/defconfig
@@ -597,7 +597,6 @@ CONFIG_MSDOS_PARTITION=y
 # CONFIG_FULLDEBUG is not set
 # CONFIG_HIGHPROFILE is not set
 # CONFIG_BOOTPARAM is not set
-# CONFIG_DUMPTOFLASH is not set
 # CONFIG_NO_KERNEL_MSG is not set
 # CONFIG_BDM_DISABLE is not set
 

^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH]  m68knommu: Removing config variable BDM_DISABLE
@ 2007-11-15  8:41 Jiri Olsa
  0 siblings, 0 replies; 5+ messages in thread
From: Jiri Olsa @ 2007-11-15  8:41 UTC (permalink / raw)
  To: kernel-janitors

Removing config variable BDM_DISABLE, since it is not used
Removing #ifdef MCF_BDM_DISABLE code , since MCF_BDM_DISABLE is not defined

Signed-off-by: Jiri Olsa <olsajiri@gmail.com>
---
 arch/m68knommu/Kconfig.debug          |    6 ------
 arch/m68knommu/defconfig              |    1 -
 arch/m68knommu/platform/5307/config.c |    9 ---------
 arch/m68knommu/platform/532x/config.c |    9 ---------
 4 files changed, 0 insertions(+), 25 deletions(-)

diff --git a/arch/m68knommu/Kconfig.debug b/arch/m68knommu/Kconfig.debug
index 9ff47bd..2784b46 100644
--- a/arch/m68knommu/Kconfig.debug
+++ b/arch/m68knommu/Kconfig.debug
@@ -33,10 +33,4 @@ config NO_KERNEL_MSG
 	help
 	  Do not output any debug BUG messages within the kernel.
 
-config BDM_DISABLE
-	bool "Disable BDM signals"
-	depends on (EXPERIMENTAL && COLDFIRE)
-	help
-	  Disable the ColdFire CPU's BDM signals.
-
 endmenu
diff --git a/arch/m68knommu/defconfig b/arch/m68knommu/defconfig
index 5a0ecaa..fa44eea 100644
--- a/arch/m68knommu/defconfig
+++ b/arch/m68knommu/defconfig
@@ -599,7 +599,6 @@ CONFIG_MSDOS_PARTITION=y
 # CONFIG_BOOTPARAM is not set
 # CONFIG_DUMPTOFLASH is not set
 # CONFIG_NO_KERNEL_MSG is not set
-# CONFIG_BDM_DISABLE is not set
 
 #
 # Security options
diff --git a/arch/m68knommu/platform/5307/config.c b/arch/m68knommu/platform/5307/config.c
index 6040821..e356e4a 100644
--- a/arch/m68knommu/platform/5307/config.c
+++ b/arch/m68knommu/platform/5307/config.c
@@ -116,15 +116,6 @@ void config_BSP(char *commandp, int size)
 #endif
 
 	mach_reset = coldfire_reset;
-
-#ifdef MCF_BDM_DISABLE
-	/*
-	 * Disable the BDM clocking.  This also turns off most of the rest of
-	 * the BDM device.  This is good for EMC reasons. This option is not
-	 * incompatible with the memory protection option.
-	 */
-	wdebug(MCFDEBUG_CSR, MCFDEBUG_CSR_PSTCLK);
-#endif
 }
 
 /***************************************************************************/
diff --git a/arch/m68knommu/platform/532x/config.c b/arch/m68knommu/platform/532x/config.c
index f77328b..4166ce5 100644
--- a/arch/m68knommu/platform/532x/config.c
+++ b/arch/m68knommu/platform/532x/config.c
@@ -98,15 +98,6 @@ void config_BSP(char *commandp, int size)
 	mcf_timervector = 64+32;
 	mcf_profilevector = 64+33;
 	mach_reset = coldfire_reset;
-
-#ifdef MCF_BDM_DISABLE
-	/*
-	 * Disable the BDM clocking.  This also turns off most of the rest of
-	 * the BDM device.  This is good for EMC reasons. This option is not
-	 * incompatible with the memory protection option.
-	 */
-	wdebug(MCFDEBUG_CSR, MCFDEBUG_CSR_PSTCLK);
-#endif
 }
 
 /***************************************************************************/

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

end of thread, other threads:[~2007-11-19  1:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-15  8:41 [PATCH] m68knommu: Removing config variable DUMPTOFLASH Jiri Olsa
2007-11-15 18:24 ` [PATCH] m68knommu: Removing config variable BDM_DISABLE Marcin Ślusarz
2007-11-16  8:27 ` Jiri Olsa
2007-11-19  1:40 ` Greg Ungerer
  -- strict thread matches above, loose matches on Subject: below --
2007-11-15  8:41 Jiri Olsa

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.