Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1277550
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 01/10] Input: s3c2410_ts: fix S3C_ADC dependency |
| Date | 2015-11-25 17:20 +0100 |
| Message-ID | <qyKXx-cZ-23@gated-at.bofh.it> (permalink) |
| References | <qyKNQ-9k-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
S3C_ADC is only available on machines that don't do ARCH_MULTIPLATFORM, so changing the 'select' into 'depends on' here helps us move to ARCH_MULTIPLATFORM without introducing regressions. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> --- drivers/input/touchscreen/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig index ae33da7ab51f..ae35edcd6a34 100644 --- a/drivers/input/touchscreen/Kconfig +++ b/drivers/input/touchscreen/Kconfig @@ -365,7 +365,7 @@ config TOUCHSCREEN_IPROC config TOUCHSCREEN_S3C2410 tristate "Samsung S3C2410/generic touchscreen input driver" depends on ARCH_S3C24XX || SAMSUNG_DEV_TS - select S3C_ADC + depends on S3C_ADC help Say Y here if you have the s3c2410 touchscreen. -- 2.1.0.rc2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 00/10] ARM: s3c64xx multiplatform Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:10 +0100
[PATCH 03/10] gpio: samsung: move gpio-samsung driver back to platform code Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:10 +0100
[PATCH 02/10] ASoC: samsung/smartq: use dynamic registration Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:10 +0100
[PATCH 08/10] ARM: s3c64xx: use common debug-ll implementation Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:10 +0100
[PATCH 10/10] ARM: s3c64xx: allow building without board support Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:20 +0100
[PATCH 07/10] ARM: s3c64xx: use new adc/touchscreen driver Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:20 +0100
[PATCH 01/10] Input: s3c2410_ts: fix S3C_ADC dependency Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:20 +0100
Re: [PATCH 00/10] ARM: s3c64xx multiplatform Mark Brown <broonie@kernel.org> - 2015-11-25 17:40 +0100
Re: [PATCH 00/10] ARM: s3c64xx multiplatform Arnd Bergmann <arnd@arndb.de> - 2015-11-25 17:40 +0100
csiph-web