We select the PCF50633 core part, which depends on I2C, in our Kconfig. However, make oldconfig does not automatically resolve this "depends on I2C" dependency. This is known as one can read in the Kconfig documentation. Nevertheless, we should select I2C for GTA02 as it's needed anyway.
Signed-off-by: Sven Rebhan <[email protected]> diff --git a/arch/arm/mach-s3c2442/Kconfig b/arch/arm/mach-s3c2442/Kconfig index bb9407d..7082e3c 100644 --- a/arch/arm/mach-s3c2442/Kconfig +++ b/arch/arm/mach-s3c2442/Kconfig @@ -29,6 +29,7 @@ config MACH_NEO1973_GTA02 bool "Openmoko GTA02 / Freerunner phone" select CPU_S3C2442 select MFD_PCF50633 + select I2C select POWER_SUPPLY select MACH_NEO1973 select S3C2410_PWM -- 1.6.0.6
