diff options
author | Anton Blanchard <anton@samba.org> | 2006-03-21 23:00:06 -0800 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-23 14:40:16 +1100 |
commit | 8ac4fc53fef6b4ff942a66be1b503b24d32bcf83 (patch) | |
tree | d02f0edf7607c7f12c2ad4501c7ea2b4ee5d57e8 /drivers/char | |
parent | 3bea63136fd9b1398de77f76b7b9e3b28249ecca (diff) | |
download | kernel-crypto-8ac4fc53fef6b4ff942a66be1b503b24d32bcf83.tar.gz kernel-crypto-8ac4fc53fef6b4ff942a66be1b503b24d32bcf83.tar.xz kernel-crypto-8ac4fc53fef6b4ff942a66be1b503b24d32bcf83.zip |
[PATCH] powerpc: dont allow old RTC to be selected
Now powerpc uses the generic RTC stuff we should not enable the old RTC.
Doing so will result in hangs at boot.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 05ba410682a..b524f5ba78a 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -695,7 +695,7 @@ config NVRAM config RTC tristate "Enhanced Real Time Clock Support" - depends on !PPC32 && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV + depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV ---help--- If you say Y here and create a character special file /dev/rtc with major number 10 and minor number 135 using mknod ("man mknod"), you |