All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] avr32: don't offer CONFIG_GEN_RTC
@ 2008-04-14 14:16 Adrian Bunk
  2008-04-15  1:08 ` Paul Gortmaker
  0 siblings, 1 reply; 3+ messages in thread
From: Adrian Bunk @ 2008-04-14 14:16 UTC (permalink / raw
  To: hskinnemoen, p_gortmaker; +Cc: linux-kernel

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>

---
a2136f51db673446bfcc0ebc1b92e62d8ddb3f57 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

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

* Re: [2.6 patch] avr32: don't offer CONFIG_GEN_RTC
  2008-04-14 14:16 [2.6 patch] avr32: don't offer CONFIG_GEN_RTC Adrian Bunk
@ 2008-04-15  1:08 ` Paul Gortmaker
  2008-04-15  9:06   ` Adrian Bunk
  0 siblings, 1 reply; 3+ messages in thread
From: Paul Gortmaker @ 2008-04-15  1:08 UTC (permalink / raw
  To: Adrian Bunk, hskinnemoen; +Cc: linux-kernel


--- Adrian Bunk <bunk@kernel.org> wrote:

> 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>

I'm assuming this must be a randconfig error, as at
a glance, nothing in arch/avr32/configs/* is setting
GEN_RTC.

Acked-by:  Paul Gortmaker <p_gortmaker@yahoo.com>

> 
> ---
> a2136f51db673446bfcc0ebc1b92e62d8ddb3f57 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
> 



      __________________________________________________________________
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot with the All-new Yahoo! Mail.  Click on Options in Mail and switch to New Mail today or register for free at http://mail.yahoo.ca

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

* Re: [2.6 patch] avr32: don't offer CONFIG_GEN_RTC
  2008-04-15  1:08 ` Paul Gortmaker
@ 2008-04-15  9:06   ` Adrian Bunk
  0 siblings, 0 replies; 3+ messages in thread
From: Adrian Bunk @ 2008-04-15  9:06 UTC (permalink / raw
  To: Paul Gortmaker; +Cc: hskinnemoen, linux-kernel

On Mon, Apr 14, 2008 at 09:08:16PM -0400, Paul Gortmaker wrote:
> 
> --- Adrian Bunk <bunk@kernel.org> wrote:
> 
> > 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>
> 
> I'm assuming this must be a randconfig error, as at
> a glance, nothing in arch/avr32/configs/* is setting
> GEN_RTC.
>...

Not randconfig, I tried allmodconfig.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


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

end of thread, other threads:[~2008-04-15  9:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-14 14:16 [2.6 patch] avr32: don't offer CONFIG_GEN_RTC Adrian Bunk
2008-04-15  1:08 ` Paul Gortmaker
2008-04-15  9:06   ` Adrian Bunk

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.