public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Matti Vaittinen <mazziesaccount@gmail.com>
Cc: Maxime Chevallier <maxime.chevallier@bootlin.com>,
	David Lechner <dlechner@baylibre.com>,
	nuno.sa@analog.com, Andy Shevchenko <andy@kernel.org>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Marcelo Schmitt <marcelo.schmitt@analog.com>,
	Antoniu Miclaus <antoniu.miclaus@analog.com>,
	Angelo Dureghello <adureghello@baylibre.com>,
	Tobias Sperling <tobias.sperling@softing.com>,
	Eason Yang <j2anfernee@gmail.com>,
	Marilene Andrade Garcia <marilene.agarcia@gmail.com>,
	Cosmin Tanislav <cosmin-gabriel.tanislav.xa@renesas.com>,
	duje@dujemihanovic.xyz, herve.codina@bootlin.com,
	Rodolfo Giometti <giometti@enneenne.com>,
	linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, thomas.petazzoni@bootlin.com
Subject: Re: [PATCH 2/2] iio: adc: add driver for Texas Instruments TLA2528 adc
Date: Sun, 11 Jan 2026 12:06:35 +0000	[thread overview]
Message-ID: <20260111120635.46f7216e@jic23-huawei> (raw)
In-Reply-To: <286a032d-7a14-409d-9bb3-6033c35f8e99@gmail.com>

On Fri, 2 Jan 2026 09:13:51 +0200
Matti Vaittinen <mazziesaccount@gmail.com> wrote:

> On 31/12/2025 19:12, Jonathan Cameron wrote:
> > On Mon, 29 Dec 2025 10:20:23 +0200
> > Matti Vaittinen <mazziesaccount@gmail.com> wrote:
> >   
> >> On 23/12/2025 17:55, Maxime Chevallier wrote:  
> >>> This adds a new driver for the TI TLA2528 ADC chip. It ha 8 12-bit
> >>> channels, that can also be configured as 16-bit averaging channels.
> >>>
> >>> Add a very simple driver for it, allowing reading raw values for each
> >>> channel.
> >>>
> >>> Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
> >>> Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
> >>> ---
> >>>    MAINTAINERS                  |   7 ++
> >>>    drivers/iio/adc/Kconfig      |  10 ++
> >>>    drivers/iio/adc/Makefile     |   1 +
> >>>    drivers/iio/adc/ti-tla2528.c | 209 +++++++++++++++++++++++++++++++++++
> >>>    4 files changed, 227 insertions(+)
> >>>    create mode 100644 drivers/iio/adc/ti-tla2528.c
> >>>
> >>> diff --git a/MAINTAINERS b/MAINTAINERS
> >>> index dc731d37c8fe..5c382ae216c7 100644
> >>> --- a/MAINTAINERS
> >>> +++ b/MAINTAINERS
> >>> @@ -25866,6 +25866,13 @@ F:	include/dt-bindings/soc/ti,sci_pm_domain.h
> >>>    F:	include/linux/soc/ti/ti_sci_inta_msi.h
> >>>    F:	include/linux/soc/ti/ti_sci_protocol.h
> >>>    
> >>> +TEXAS INSTRUMENTS' TLA2528 ADC DRIVER
> >>> +M:	Maxime Chevallier <maxime.chevallier@bootlin.com>
> >>> +L:	linux-iio@vger.kernel.org
> >>> +S:	Supported
> >>> +F:	Documentation/devicetree/bindings/iio/adc/ti,tla2528.yaml
> >>> +F:	drivers/iio/adc/ti-tla2528.c
> >>> +
> >>>    TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
> >>>    M:	Puranjay Mohan <puranjay@kernel.org>
> >>>    L:	linux-iio@vger.kernel.org
> >>> diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig
> >>> index 58da8255525e..67376de410bf 100644  
> >>
> >> Hmm. Would it ease merging if MAINTAINERS changes were in their own patch?  
> > 
> > Not particularly.  Though I personally slightly prefer the logic
> > of bringing the entry in with the first file, then adding additional files
> > in later patches.
> > 
> > Given it is huge and in alphabetical order, conflicts in MAINTAINERS are
> > fairly rare and trivial to resolve.
> >   
> 
> Thanks for this clarification :)
> 
> I don't know where I had picked up this idea, but I thought that the 
> volume of changes in MAINTAINERs was somewhat annoying source of 
> conflicts. I sit and type corrected :)

Low chance for any given patch, but high chance overall as so many patches
touch it!  Resolving it isn't really any easier if it is inside a bigger
patch or not.

Jonathan

> 
> 
> Yours,
> 	-- Matti
> 
> ---
> Matti Vaittinen
> Linux kernel developer at ROHM Semiconductors
> Oulu Finland
> 
> ~~ When things go utterly wrong vim users can always type :help! ~~


  reply	other threads:[~2026-01-11 12:06 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-23 15:55 [PATCH 0/2] Add driver for the TI TLA2528 i2c ADC Maxime Chevallier
2025-12-23 15:55 ` [PATCH 1/2] dt-bindings: iio: adc: add Texas Instruments TLA 2528 Maxime Chevallier
2025-12-23 18:26   ` David Lechner
2025-12-29  8:04     ` Matti Vaittinen
2025-12-29  9:31       ` Andy Shevchenko
2025-12-29 13:23         ` Matti Vaittinen
2026-01-05  9:17           ` Maxime Chevallier
2026-01-05  9:18     ` Maxime Chevallier
2025-12-23 15:55 ` [PATCH 2/2] iio: adc: add driver for Texas Instruments TLA2528 adc Maxime Chevallier
2025-12-23 17:12   ` Maxime Chevallier
2025-12-23 17:33     ` David Lechner
2025-12-27 14:43       ` Andy Shevchenko
2025-12-23 18:26   ` David Lechner
2026-01-05 10:11     ` Maxime Chevallier
2025-12-27 18:42   ` Jonathan Cameron
2026-01-05 10:16     ` Maxime Chevallier
2026-01-11 12:04       ` Jonathan Cameron
2025-12-29  8:20   ` Matti Vaittinen
2025-12-31 17:12     ` Jonathan Cameron
2026-01-02  7:13       ` Matti Vaittinen
2026-01-11 12:06         ` Jonathan Cameron [this message]
2026-01-05 10:25     ` Maxime Chevallier
2025-12-29  9:39   ` Andy Shevchenko
2026-01-05 10:27     ` Maxime Chevallier

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260111120635.46f7216e@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=adureghello@baylibre.com \
    --cc=andy@kernel.org \
    --cc=antoniu.miclaus@analog.com \
    --cc=conor+dt@kernel.org \
    --cc=cosmin-gabriel.tanislav.xa@renesas.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dlechner@baylibre.com \
    --cc=duje@dujemihanovic.xyz \
    --cc=giometti@enneenne.com \
    --cc=herve.codina@bootlin.com \
    --cc=j2anfernee@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.schmitt@analog.com \
    --cc=marilene.agarcia@gmail.com \
    --cc=maxime.chevallier@bootlin.com \
    --cc=mazziesaccount@gmail.com \
    --cc=nuno.sa@analog.com \
    --cc=robh@kernel.org \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=tobias.sperling@softing.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox