diff options
author | Shaohui Xie <Shaohui.Xie@freescale.com> | 2012-05-11 07:33:40 +0200 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2012-07-10 14:07:22 +0200 |
commit | be0884ce23b8c4270b6342b7f410126a67b9c8ad (patch) | |
tree | 20171fa3fb007e11d6a81c4c8f3b7121ca3fcc74 /drivers/watchdog/Kconfig | |
parent | powerpc/mpic: Use the MPIC_LARGE_VECTORS flag for FSL MPIC. (diff) | |
download | linux-be0884ce23b8c4270b6342b7f410126a67b9c8ad.tar.xz linux-be0884ce23b8c4270b6342b7f410126a67b9c8ad.zip |
powerpc/watchdog: replace CONFIG_FSL_BOOKE with CONFIG_PPC_FSL_BOOK3E
CONFIG_FSL_BOOKE is only defined in 32-bit, CONFIG_PPC_FSL_BOOK3E is
defined in both 32-bit and 64-bit, so use CONFIG_PPC_FSL_BOOK3E to make
driver work in 32-bit & 64-bit.
Signed-off-by: Shaohui Xie <Shaohui.Xie@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'drivers/watchdog/Kconfig')
-rw-r--r-- | drivers/watchdog/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index fe819b76de56..c450cfcd702f 100644 --- a/drivers/watchdog/Kconfig +++ b/drivers/watchdog/Kconfig @@ -1115,10 +1115,10 @@ config BOOKE_WDT config BOOKE_WDT_DEFAULT_TIMEOUT int "PowerPC Book-E Watchdog Timer Default Timeout" depends on BOOKE_WDT - default 38 if FSL_BOOKE - range 0 63 if FSL_BOOKE - default 3 if !FSL_BOOKE - range 0 3 if !FSL_BOOKE + default 38 if PPC_FSL_BOOK3E + range 0 63 if PPC_FSL_BOOK3E + default 3 if !PPC_FSL_BOOK3E + range 0 3 if !PPC_FSL_BOOK3E help Select the default watchdog timer period to be used by the PowerPC Book-E watchdog driver. A watchdog "event" occurs when the bit |