Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1540679 > unrolled thread
| Started by | "H. Nikolaus Schaller" <hns@goldelico.com> |
|---|---|
| First post | 2016-12-12 22:30 +0100 |
| Last post | 2016-12-30 21:20 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature "H. Nikolaus Schaller" <hns@goldelico.com> - 2016-12-12 22:30 +0100
Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature "H. Nikolaus Schaller" <hns@goldelico.com> - 2016-12-27 20:10 +0100
Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2016-12-27 23:00 +0100
Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature "H. Nikolaus Schaller" <hns@goldelico.com> - 2016-12-28 16:00 +0100
Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature Jonathan Cameron <jic23@kernel.org> - 2016-12-30 21:20 +0100
| From | "H. Nikolaus Schaller" <hns@goldelico.com> |
|---|---|
| Date | 2016-12-12 22:30 +0100 |
| Subject | Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature |
| Message-ID | <sNGkx-XE-13@gated-at.bofh.it> |
Hi, > Am 27.11.2016 um 16:47 schrieb H. Nikolaus Schaller <hns@goldelico.com>: > > Hi Jonathan, > >> Am 27.11.2016 um 12:02 schrieb Jonathan Cameron <jic23@kernel.org>: >> >> On 24/11/16 18:05, H. Nikolaus Schaller wrote: >>> >>>> Am 24.11.2016 um 18:38 schrieb Jonathan Cameron <jic23@jic23.retrosnub.co.uk>: >>>> >>>> >>>> >>>> On 22 November 2016 14:02:30 GMT+00:00, "H. Nikolaus Schaller" <hns@goldelico.com> wrote: > >> - hence cc'd Yann and the Kbuild list >> to see if they can offer some advices. no response / advice so far. > > Thanks! > > BTW, the other tsc2007 and ads7846 patches could already be merged (if there > are no more changes needed) since this one only depends on the result of applying > all others before. I wonder if input maintainers can already merge the other patches of this patch series? BR and thanks, Nikolaus
[toc] | [next] | [standalone]
| From | "H. Nikolaus Schaller" <hns@goldelico.com> |
|---|---|
| Date | 2016-12-27 20:10 +0100 |
| Message-ID | <sT5ih-63L-1@gated-at.bofh.it> |
| In reply to | #1540679 |
ping. > Am 12.12.2016 um 22:21 schrieb H. Nikolaus Schaller <hns@goldelico.com>: > > Hi, > > >> Am 27.11.2016 um 16:47 schrieb H. Nikolaus Schaller <hns@goldelico.com>: >> >> Hi Jonathan, >> >>> Am 27.11.2016 um 12:02 schrieb Jonathan Cameron <jic23@kernel.org>: >>> >>> On 24/11/16 18:05, H. Nikolaus Schaller wrote: >>>> >>>>> Am 24.11.2016 um 18:38 schrieb Jonathan Cameron <jic23@jic23.retrosnub.co.uk>: >>>>> >>>>> >>>>> >>>>> On 22 November 2016 14:02:30 GMT+00:00, "H. Nikolaus Schaller" <hns@goldelico.com> wrote: > >> >>> - hence cc'd Yann and the Kbuild list >>> to see if they can offer some advices. > > no response / advice so far. > >> >> Thanks! >> >> BTW, the other tsc2007 and ads7846 patches could already be merged (if there >> are no more changes needed) since this one only depends on the result of applying >> all others before. > > I wonder if input maintainers can already merge the other patches of this patch series? series: https://lkml.org/lkml/2016/11/22/309
[toc] | [prev] | [next] | [standalone]
| From | Dmitry Torokhov <dmitry.torokhov@gmail.com> |
|---|---|
| Date | 2016-12-27 23:00 +0100 |
| Subject | Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature |
| Message-ID | <sT7WN-7AB-11@gated-at.bofh.it> |
| In reply to | #1540679 |
On Mon, Dec 12, 2016 at 10:21:25PM +0100, H. Nikolaus Schaller wrote: > Hi, > > > > Am 27.11.2016 um 16:47 schrieb H. Nikolaus Schaller <hns@goldelico.com>: > > > > Hi Jonathan, > > > >> Am 27.11.2016 um 12:02 schrieb Jonathan Cameron <jic23@kernel.org>: > >> > >> On 24/11/16 18:05, H. Nikolaus Schaller wrote: > >>> > >>>> Am 24.11.2016 um 18:38 schrieb Jonathan Cameron <jic23@jic23.retrosnub.co.uk>: > >>>> > >>>> > >>>> > >>>> On 22 November 2016 14:02:30 GMT+00:00, "H. Nikolaus Schaller" <hns@goldelico.com> wrote: > > > > >> - hence cc'd Yann and the Kbuild list > >> to see if they can offer some advices. > > no response / advice so far. Since you are saying that IIO stuff is optional, add it to Kconfig explicitly: config "TOUCHSCREEN_TSC2007_IIO" bool "IIO interface for external ADC input and temperature" depends on TOUCHSCREEN_TSC2007 depends on IIO=y || IIO=TOUCHSCREEN_TSC2007 help ... and use this symbols in makefile: and in Makefile: obj-$(CONFIG_TOUCHSCREEN_TSC2007) += tsc2007.o tsc2007-y := tsc2007-core.o ... tsc2007-$(CONFIG_TOUCHSCREEN_TSC2007_IIO) += tsc2007_iio.o Thanks. -- Dmitry
[toc] | [prev] | [next] | [standalone]
| From | "H. Nikolaus Schaller" <hns@goldelico.com> |
|---|---|
| Date | 2016-12-28 16:00 +0100 |
| Message-ID | <sTnRT-15P-13@gated-at.bofh.it> |
| In reply to | #1547761 |
Hi Dmitry, > Am 27.12.2016 um 22:54 schrieb Dmitry Torokhov <dmitry.torokhov@gmail.com>: > > On Mon, Dec 12, 2016 at 10:21:25PM +0100, H. Nikolaus Schaller wrote: >> Hi, >> >> >>> Am 27.11.2016 um 16:47 schrieb H. Nikolaus Schaller <hns@goldelico.com>: >>> >>> Hi Jonathan, >>> >>>> Am 27.11.2016 um 12:02 schrieb Jonathan Cameron <jic23@kernel.org>: >>>> >>>> On 24/11/16 18:05, H. Nikolaus Schaller wrote: >>>>> >>>>>> Am 24.11.2016 um 18:38 schrieb Jonathan Cameron <jic23@jic23.retrosnub.co.uk>: >>>>>> >>>>>> >>>>>> >>>>>> On 22 November 2016 14:02:30 GMT+00:00, "H. Nikolaus Schaller" <hns@goldelico.com> wrote: >> >>> >>>> - hence cc'd Yann and the Kbuild list >>>> to see if they can offer some advices. >> >> no response / advice so far. > > Since you are saying that IIO stuff is optional, add it to Kconfig > explicitly: > > config "TOUCHSCREEN_TSC2007_IIO" > bool "IIO interface for external ADC input and temperature" > depends on TOUCHSCREEN_TSC2007 > depends on IIO=y || IIO=TOUCHSCREEN_TSC2007 > help > ... > > and use this symbols in makefile: > > and in Makefile: > > obj-$(CONFIG_TOUCHSCREEN_TSC2007) += tsc2007.o > tsc2007-y := tsc2007-core.o ... > tsc2007-$(CONFIG_TOUCHSCREEN_TSC2007_IIO) += tsc2007_iio.o Ah, ok. Well, we tried to make it without an explicit config option but it does not hurt to have one. Your proposal works fine for 3 out of the 4 possible combinations. I think it is unlikely that the combination TOUCHSCREEN_TSC2007=y IIO=m is needed at all (we configure as much as possible as =m in our kernel). Patch v9 will come next (where I have also moved this iio driver patch to be 8/8). BR and thanks, Nikolaus
[toc] | [prev] | [next] | [standalone]
| From | Jonathan Cameron <jic23@kernel.org> |
|---|---|
| Date | 2016-12-30 21:20 +0100 |
| Subject | Re: [PATCH v8 3/8] drivers:input:tsc2007: add iio interface to read external ADC input and temperature |
| Message-ID | <sUbOF-DA-7@gated-at.bofh.it> |
| In reply to | #1547982 |
On 28/12/16 14:52, H. Nikolaus Schaller wrote: > Hi Dmitry, > >> Am 27.12.2016 um 22:54 schrieb Dmitry Torokhov <dmitry.torokhov@gmail.com>: >> >> On Mon, Dec 12, 2016 at 10:21:25PM +0100, H. Nikolaus Schaller wrote: >>> Hi, >>> >>> >>>> Am 27.11.2016 um 16:47 schrieb H. Nikolaus Schaller <hns@goldelico.com>: >>>> >>>> Hi Jonathan, >>>> >>>>> Am 27.11.2016 um 12:02 schrieb Jonathan Cameron <jic23@kernel.org>: >>>>> >>>>> On 24/11/16 18:05, H. Nikolaus Schaller wrote: >>>>>> >>>>>>> Am 24.11.2016 um 18:38 schrieb Jonathan Cameron <jic23@jic23.retrosnub.co.uk>: >>>>>>> >>>>>>> >>>>>>> >>>>>>> On 22 November 2016 14:02:30 GMT+00:00, "H. Nikolaus Schaller" <hns@goldelico.com> wrote: >>> >>>> >>>>> - hence cc'd Yann and the Kbuild list >>>>> to see if they can offer some advices. >>> >>> no response / advice so far. >> >> Since you are saying that IIO stuff is optional, add it to Kconfig >> explicitly: >> >> config "TOUCHSCREEN_TSC2007_IIO" >> bool "IIO interface for external ADC input and temperature" >> depends on TOUCHSCREEN_TSC2007 >> depends on IIO=y || IIO=TOUCHSCREEN_TSC2007 >> help >> ... >> >> and use this symbols in makefile: >> >> and in Makefile: >> >> obj-$(CONFIG_TOUCHSCREEN_TSC2007) += tsc2007.o >> tsc2007-y := tsc2007-core.o ... >> tsc2007-$(CONFIG_TOUCHSCREEN_TSC2007_IIO) += tsc2007_iio.o > > Ah, ok. Well, we tried to make it without an explicit config option > but it does not hurt to have one. > > Your proposal works fine for 3 out of the 4 possible combinations. > > I think it is unlikely that the combination TOUCHSCREEN_TSC2007=y IIO=m > is needed at all (we configure as much as possible as =m in our kernel). Indeed - that shouldn't work and is blocked by the above which is good. > > Patch v9 will come next (where I have also moved this iio driver > patch to be 8/8). Wise move ;) > > BR and thanks, > Nikolaus >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web