diff options
author | Andrew Morton <akpm@osdl.org> | 2005-07-27 11:44:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 16:25:57 -0700 |
commit | 62b662a30963c2e7bdfc129f78c3da0559202379 (patch) | |
tree | 13ca71a87bfb0ea7c9990fa9fccba245865c995f /drivers/char/Kconfig | |
parent | 64c74de7a3a744bc546ef76872be6285307ce101 (diff) | |
download | kernel_samsung_espresso10-62b662a30963c2e7bdfc129f78c3da0559202379.zip kernel_samsung_espresso10-62b662a30963c2e7bdfc129f78c3da0559202379.tar.gz kernel_samsung_espresso10-62b662a30963c2e7bdfc129f78c3da0559202379.tar.bz2 |
[PATCH] ppc64: genrtc build fix
genrtc.c won't compile on ppc64. Seems that ppc32 does support it though?
We do this wrong btw - we should be selecting GEN_RTC in each
arch/xxx/Kconfig.
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/Kconfig')
-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 43d0cb1..4f27e55 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -735,7 +735,7 @@ config SGI_IP27_RTC config GEN_RTC tristate "Generic /dev/rtc emulation" - depends on RTC!=y && !IA64 && !ARM + depends on RTC!=y && !IA64 && !ARM && !PPC64 ---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 |