public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM:S3C24XX: Fix a wrong dependency in Kconfig which leads to a compile time error
@ 2009-09-21  7:52 Shine Liu
  2009-09-21 13:00 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: Shine Liu @ 2009-09-21  7:52 UTC (permalink / raw)
  To: ben-linux; +Cc: linux-arm-kernel, inux-arm-kernel, linux, linux-kernel

Hi all,

There's a small mistake in arch/arm/plat-s3c24xx/Kconfig leads to a
compile time error when compiling kernel for S3C24XX mach:

  LD      .tmp_vmlinux1
arch/arm/mach-s3c2440/built-in.o: In function `mini2440_map_io':
mach-mini2440.c:(.init.text+0x4a0): undefined reference to `s3c_device_nand'
arch/arm/mach-s3c2440/built-in.o:(.init.data+0x78c): undefined reference to `s3c_device_nand'
arch/arm/plat-s3c24xx/built-in.o: In function `s3c244x_map_io':
common-smdk.c:(.init.text+0x8e4): undefined reference to `s3c_device_nand'
arch/arm/plat-s3c24xx/built-in.o: In function `smdk_machine_init':
common-smdk.c:(.init.text+0xe44): undefined reference to `s3c_device_nand'
arch/arm/plat-s3c24xx/built-in.o:(.init.data+0x18c): undefined reference to `s3c_device_nand'
make: *** [.tmp_vmlinux1] Error 1

The bug was introduced by the patch:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=db616eb67604242c11bfbb331bb143bfe4a2e386

Both kernel 2.6.31 and latest linux-next (next-20090918) has the defect.
The following patch will fixed this bug.



Signed-off-by: Shine Liu <shinel@foxmail.com>
Signed-off-by: Shine Liu <liuxian@redflag-linux.com>
----------------------------------------------------

--- a/arch/arm/plat-s3c24xx/Kconfig	2009-09-21 15:09:59.000000000 +0800
+++ b/arch/arm/plat-s3c24xx/Kconfig	2009-09-21 15:10:09.000000000 +0800
@@ -10,7 +10,7 @@
 	default y
 	select NO_IOPORT
 	select ARCH_REQUIRE_GPIOLIB
-	select S3C_DEVICE_NAND
+	select S3C_DEV_NAND
 	help
 	  Base platform code for any Samsung S3C24XX device
 




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

* Re: [PATCH] ARM:S3C24XX: Fix a wrong dependency in Kconfig which leads to a compile time error
  2009-09-21  7:52 [PATCH] ARM:S3C24XX: Fix a wrong dependency in Kconfig which leads to a compile time error Shine Liu
@ 2009-09-21 13:00 ` Ben Dooks
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Dooks @ 2009-09-21 13:00 UTC (permalink / raw)
  To: Shine Liu
  Cc: ben-linux, linux-arm-kernel, inux-arm-kernel, linux, linux-kernel

On Mon, Sep 21, 2009 at 03:52:12PM +0800, Shine Liu wrote:
> Hi all,
> 
> There's a small mistake in arch/arm/plat-s3c24xx/Kconfig leads to a
> compile time error when compiling kernel for S3C24XX mach:
> 
>   LD      .tmp_vmlinux1
> arch/arm/mach-s3c2440/built-in.o: In function `mini2440_map_io':
> mach-mini2440.c:(.init.text+0x4a0): undefined reference to `s3c_device_nand'
> arch/arm/mach-s3c2440/built-in.o:(.init.data+0x78c): undefined reference to `s3c_device_nand'
> arch/arm/plat-s3c24xx/built-in.o: In function `s3c244x_map_io':
> common-smdk.c:(.init.text+0x8e4): undefined reference to `s3c_device_nand'
> arch/arm/plat-s3c24xx/built-in.o: In function `smdk_machine_init':
> common-smdk.c:(.init.text+0xe44): undefined reference to `s3c_device_nand'
> arch/arm/plat-s3c24xx/built-in.o:(.init.data+0x18c): undefined reference to `s3c_device_nand'
> make: *** [.tmp_vmlinux1] Error 1
> 
> The bug was introduced by the patch:
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=db616eb67604242c11bfbb331bb143bfe4a2e386
> 
> Both kernel 2.6.31 and latest linux-next (next-20090918) has the defect.
> The following patch will fixed this bug.

Hi, thankyou for the great bug report but this is already fixed in
a set sent to RMK.

> Signed-off-by: Shine Liu <shinel@foxmail.com>
> Signed-off-by: Shine Liu <liuxian@redflag-linux.com>
> ----------------------------------------------------
> 
> --- a/arch/arm/plat-s3c24xx/Kconfig	2009-09-21 15:09:59.000000000 +0800
> +++ b/arch/arm/plat-s3c24xx/Kconfig	2009-09-21 15:10:09.000000000 +0800
> @@ -10,7 +10,7 @@
>  	default y
>  	select NO_IOPORT
>  	select ARCH_REQUIRE_GPIOLIB
> -	select S3C_DEVICE_NAND
> +	select S3C_DEV_NAND
>  	help
>  	  Base platform code for any Samsung S3C24XX device

The best solution (although it does touch a number of Kconfig files)
is to ensure each machine that requires the s3c_device_nand defines
a select in their machine Kconfig.

for example:

config MACH_OSIRIS
	....
	select S3C_DEV_NAND
	....

-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.


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

end of thread, other threads:[~2009-09-21 13:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-21  7:52 [PATCH] ARM:S3C24XX: Fix a wrong dependency in Kconfig which leads to a compile time error Shine Liu
2009-09-21 13:00 ` Ben Dooks

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