public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] asus_acpi build fix for 2.6.0-test6
@ 2003-10-02 20:33 Stephen Hemminger
       [not found] ` <20031002133318.0ee1fc95.shemminger-3NddpPZAyC0@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Stephen Hemminger @ 2003-10-02 20:33 UTC (permalink / raw)
  To: Len Brown; +Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

For 2.6.0-test6 BK latest, fix 'make allmodconfig'.  
This driver seems to think there is still linux/modversions.h on 2.6?

  CC [M]  drivers/acpi/asus_acpi.o
drivers/acpi/asus_acpi.c:37:31: linux/modversions.h: No such file or directory
diff -Nru a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
--- a/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
+++ b/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
@@ -33,10 +33,6 @@
  */
 
 #include <linux/config.h>
-#if defined (CONFIG_MODVERSIONS) && !defined (MODVERSIONS) && defined (MODULE)
-#include <linux/modversions.h>
-#endif
-
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/init.h>


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: [PATCH] asus_acpi build fix for 2.6.0-test6
       [not found] ` <20031002133318.0ee1fc95.shemminger-3NddpPZAyC0@public.gmane.org>
@ 2003-10-02 21:12   ` Julien Lerouge
  2003-10-08  3:33   ` Len Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Julien Lerouge @ 2003-10-02 21:12 UTC (permalink / raw)
  To: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Well of course ... until now, all kernel patches were generated by a
perl script from a single file, wich would remove those lines for 2.6,
but with the inclusion in mainstrem kernel it's easier to simply diff, I
guess we simply forgot to double check this, sorry :)

Best regards,
Julien Lerouge

On Thu, Oct 02, 2003 at 01:33:18PM -0700, Stephen Hemminger wrote:
> For 2.6.0-test6 BK latest, fix 'make allmodconfig'.  
> This driver seems to think there is still linux/modversions.h on 2.6?

>   CC [M]  drivers/acpi/asus_acpi.o
> drivers/acpi/asus_acpi.c:37:31: linux/modversions.h: No such file or directory
> diff -Nru a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
> --- a/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
> +++ b/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
> @@ -33,10 +33,6 @@
>   */

>  #include <linux/config.h>
> -#if defined (CONFIG_MODVERSIONS) && !defined (MODVERSIONS) && defined (MODULE)
> -#include <linux/modversions.h>
> -#endif
> -
>  #include <linux/kernel.h>
>  #include <linux/module.h>
>  #include <linux/init.h>


> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> Acpi-devel mailing list
> Acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> https://lists.sourceforge.net/lists/listinfo/acpi-devel



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: [PATCH] asus_acpi build fix for 2.6.0-test6
       [not found] ` <20031002133318.0ee1fc95.shemminger-3NddpPZAyC0@public.gmane.org>
  2003-10-02 21:12   ` Julien Lerouge
@ 2003-10-08  3:33   ` Len Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Len Brown @ 2003-10-08  3:33 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Karol Kozimor

Applied.

thanks,
-Len

On Thu, 2003-10-02 at 16:33, Stephen Hemminger wrote:
> For 2.6.0-test6 BK latest, fix 'make allmodconfig'.  
> This driver seems to think there is still linux/modversions.h on 2.6?
> 
>   CC [M]  drivers/acpi/asus_acpi.o
> drivers/acpi/asus_acpi.c:37:31: linux/modversions.h: No such file or directory
> diff -Nru a/drivers/acpi/asus_acpi.c b/drivers/acpi/asus_acpi.c
> --- a/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
> +++ b/drivers/acpi/asus_acpi.c	Thu Oct  2 13:28:35 2003
> @@ -33,10 +33,6 @@
>   */
>  
>  #include <linux/config.h>
> -#if defined (CONFIG_MODVERSIONS) && !defined (MODVERSIONS) && defined (MODULE)
> -#include <linux/modversions.h>
> -#endif
> -
>  #include <linux/kernel.h>
>  #include <linux/module.h>
>  #include <linux/init.h>



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

end of thread, other threads:[~2003-10-08  3:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-02 20:33 [PATCH] asus_acpi build fix for 2.6.0-test6 Stephen Hemminger
     [not found] ` <20031002133318.0ee1fc95.shemminger-3NddpPZAyC0@public.gmane.org>
2003-10-02 21:12   ` Julien Lerouge
2003-10-08  3:33   ` Len Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox