All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: smdk2410: Fix compile breakage
@ 2013-02-06 18:10 ` Alexander Shiyan
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Shiyan @ 2013-02-06 18:10 UTC (permalink / raw)
  To: linux-arm-kernel
  Cc: Kukjin Kim, linux-samsung-soc, Alexander Shiyan, Ben Dooks

Symbol S3C_DEV_USB_HOST should be defined to avoid this problem.
  LINK    vmlinux
  LD      vmlinux.o
  MODPOST vmlinux.o
WARNING: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
  GEN     .version
  CHK     include/generated/compile.h
  UPD     include/generated/compile.h
  CC      init/version.o
  LD      init/built-in.o
arch/arm/mach-s3c24xx/built-in.o:(.init.data+0x660): undefined reference to `s3c_device_ohci'
make: *** [vmlinux] Error 1

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/mach-s3c24xx/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
index ba6c501..8080dc1 100644
--- a/arch/arm/mach-s3c24xx/Kconfig
+++ b/arch/arm/mach-s3c24xx/Kconfig
@@ -350,6 +350,7 @@ config MACH_QT2410
 config ARCH_SMDK2410
 	bool "SMDK2410/A9M2410"
 	select S3C24XX_SMDK
+	select S3C_DEV_USB_HOST
 	help
 	  Say Y here if you are using the SMDK2410 or the derived module A9M2410
 	  <http://www.fsforth.de>
-- 
1.7.12.4

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

* [PATCH] ARM: smdk2410: Fix compile breakage
@ 2013-02-06 18:10 ` Alexander Shiyan
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander Shiyan @ 2013-02-06 18:10 UTC (permalink / raw)
  To: linux-arm-kernel

Symbol S3C_DEV_USB_HOST should be defined to avoid this problem.
  LINK    vmlinux
  LD      vmlinux.o
  MODPOST vmlinux.o
WARNING: modpost: Found 2 section mismatch(es).
To see full details build your kernel with:
'make CONFIG_DEBUG_SECTION_MISMATCH=y'
  GEN     .version
  CHK     include/generated/compile.h
  UPD     include/generated/compile.h
  CC      init/version.o
  LD      init/built-in.o
arch/arm/mach-s3c24xx/built-in.o:(.init.data+0x660): undefined reference to `s3c_device_ohci'
make: *** [vmlinux] Error 1

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/mach-s3c24xx/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig
index ba6c501..8080dc1 100644
--- a/arch/arm/mach-s3c24xx/Kconfig
+++ b/arch/arm/mach-s3c24xx/Kconfig
@@ -350,6 +350,7 @@ config MACH_QT2410
 config ARCH_SMDK2410
 	bool "SMDK2410/A9M2410"
 	select S3C24XX_SMDK
+	select S3C_DEV_USB_HOST
 	help
 	  Say Y here if you are using the SMDK2410 or the derived module A9M2410
 	  <http://www.fsforth.de>
-- 
1.7.12.4

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

* RE: [PATCH] ARM: smdk2410: Fix compile breakage
  2013-02-06 18:10 ` Alexander Shiyan
@ 2013-02-08 22:48   ` Kukjin Kim
  -1 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2013-02-08 22:48 UTC (permalink / raw)
  To: 'Alexander Shiyan', linux-arm-kernel
  Cc: linux-samsung-soc, 'Ben Dooks'

Alexander Shiyan wrote:
> 
> Symbol S3C_DEV_USB_HOST should be defined to avoid this problem.
>   LINK    vmlinux
>   LD      vmlinux.o
>   MODPOST vmlinux.o
> WARNING: modpost: Found 2 section mismatch(es).
> To see full details build your kernel with:
> 'make CONFIG_DEBUG_SECTION_MISMATCH=y'
>   GEN     .version
>   CHK     include/generated/compile.h
>   UPD     include/generated/compile.h
>   CC      init/version.o
>   LD      init/built-in.o
> arch/arm/mach-s3c24xx/built-in.o:(.init.data+0x660): undefined reference
to
> `s3c_device_ohci'
> make: *** [vmlinux] Error 1
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
>  arch/arm/mach-s3c24xx/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-
> s3c24xx/Kconfig
> index ba6c501..8080dc1 100644
> --- a/arch/arm/mach-s3c24xx/Kconfig
> +++ b/arch/arm/mach-s3c24xx/Kconfig
> @@ -350,6 +350,7 @@ config MACH_QT2410
>  config ARCH_SMDK2410
>  	bool "SMDK2410/A9M2410"
>  	select S3C24XX_SMDK
> +	select S3C_DEV_USB_HOST
>  	help
>  	  Say Y here if you are using the SMDK2410 or the derived module
> A9M2410
>  	  <http://www.fsforth.de>
> --
> 1.7.12.4

Applied, thanks.

- Kukjin

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

* [PATCH] ARM: smdk2410: Fix compile breakage
@ 2013-02-08 22:48   ` Kukjin Kim
  0 siblings, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2013-02-08 22:48 UTC (permalink / raw)
  To: linux-arm-kernel

Alexander Shiyan wrote:
> 
> Symbol S3C_DEV_USB_HOST should be defined to avoid this problem.
>   LINK    vmlinux
>   LD      vmlinux.o
>   MODPOST vmlinux.o
> WARNING: modpost: Found 2 section mismatch(es).
> To see full details build your kernel with:
> 'make CONFIG_DEBUG_SECTION_MISMATCH=y'
>   GEN     .version
>   CHK     include/generated/compile.h
>   UPD     include/generated/compile.h
>   CC      init/version.o
>   LD      init/built-in.o
> arch/arm/mach-s3c24xx/built-in.o:(.init.data+0x660): undefined reference
to
> `s3c_device_ohci'
> make: *** [vmlinux] Error 1
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
> ---
>  arch/arm/mach-s3c24xx/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-
> s3c24xx/Kconfig
> index ba6c501..8080dc1 100644
> --- a/arch/arm/mach-s3c24xx/Kconfig
> +++ b/arch/arm/mach-s3c24xx/Kconfig
> @@ -350,6 +350,7 @@ config MACH_QT2410
>  config ARCH_SMDK2410
>  	bool "SMDK2410/A9M2410"
>  	select S3C24XX_SMDK
> +	select S3C_DEV_USB_HOST
>  	help
>  	  Say Y here if you are using the SMDK2410 or the derived module
> A9M2410
>  	  <http://www.fsforth.de>
> --
> 1.7.12.4

Applied, thanks.

- Kukjin

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

end of thread, other threads:[~2013-02-08 22:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-06 18:10 [PATCH] ARM: smdk2410: Fix compile breakage Alexander Shiyan
2013-02-06 18:10 ` Alexander Shiyan
2013-02-08 22:48 ` Kukjin Kim
2013-02-08 22:48   ` Kukjin Kim

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.