diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-04-14 17:16:44 +0300 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-04-19 20:40:09 -0400 |
commit | cc65d90fcffe82f516ce5c9e1b8423841868d035 (patch) | |
tree | dfceaab825d653a4d3ade5ad60a67fd24aab43b1 /drivers/char/Kconfig | |
parent | 17015aafd6d356d5d780a6f2c286a9ff137eb211 (diff) | |
download | op-kernel-dev-cc65d90fcffe82f516ce5c9e1b8423841868d035.zip op-kernel-dev-cc65d90fcffe82f516ce5c9e1b8423841868d035.tar.gz |
avr32: don't offer CONFIG_GEN_RTC
This patch fixes the following compile error:
<-- snip -->
...
CC [M] drivers/char/genrtc.o
/home/bunk/linux/kernel-2.6/git/linux-2.6/drivers/char/genrtc.c:58:21: error: asm/rtc.h: No such file or directory
...
make[3]: *** [drivers/char/genrtc.o] Error 1
<-- snip -->
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
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 79c6fd1..a87b89d 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -776,7 +776,7 @@ config SGI_IP27_RTC config GEN_RTC tristate "Generic /dev/rtc emulation" - depends on RTC!=y && !IA64 && !ARM && !M32R && !MIPS && !SPARC && !FRV && !S390 && !SUPERH + depends on RTC!=y && !IA64 && !ARM && !M32R && !MIPS && !SPARC && !FRV && !S390 && !SUPERH && !AVR32 ---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 |