[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1ff1aaa7-7478-4b0c-a1ad-c119a11695ba@baylibre.com>
Date: Wed, 25 Sep 2024 10:40:52 +0200
From: Guillaume Stols <gstols@...libre.com>
To: David Lechner <dlechner@...libre.com>
Cc: Uwe Kleine-König <ukleinek@...nel.org>,
Lars-Peter Clausen <lars@...afoo.de>,
Michael Hennerich <Michael.Hennerich@...log.com>,
Jonathan Cameron <jic23@...nel.org>, Rob Herring <robh@...nel.org>,
Krzysztof Kozlowski <krzk+dt@...nel.org>, Conor Dooley
<conor+dt@...nel.org>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
"Rafael J. Wysocki" <rafael@...nel.org>, Jonathan Corbet <corbet@....net>,
linux-pwm@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-fbdev@...r.kernel.org, linux-iio@...r.kernel.org,
devicetree@...r.kernel.org, linux-doc@...r.kernel.org,
aardelean@...libre.com, jstephan@...libre.com
Subject: Re: [PATCH v2 07/10] iio: adc: ad7606: Add compatibility to fw_nodes
On 9/24/24 17:28, David Lechner wrote:
> On Fri, Sep 20, 2024 at 7:33 PM Guillaume Stols <gstols@...libre.com> wrote:
>> On the parallel version, the current implementation is only compatible
>> with id tables and won't work with fw_nodes, this commit intends to fix
>> it.
>>
>> Also, chip info is moved in the .h file so to be accessible to all the
>> driver files that can set a pointer to the corresponding chip as the
>> driver data.
> This sounds like two unrelated changes, so maybe we should have two patches?
Those changes are closely related to each other, in the sense that we
now gather the ad7606_chip_info structure directly from the id or match
structure, and not anymore the id which is an index where you can get it
as an element. I will update the commit message to highlight it more.
>
>
>> static const struct of_device_id ad7606_of_match[] = {
>> - { .compatible = "adi,ad7605-4" },
>> - { .compatible = "adi,ad7606-4" },
>> - { .compatible = "adi,ad7606-6" },
>> - { .compatible = "adi,ad7606-8" },
>> - { .compatible = "adi,ad7606b" },
>> - { .compatible = "adi,ad7616" },
>> + { .compatible = "adi,ad7605-4", &ad7605_4_info },
>> + { .compatible = "adi,ad7606-4", &ad7606_4_info },
>> + { .compatible = "adi,ad7606-6", &ad7606_6_info },
>> + { .compatible = "adi,ad7606-8", &ad7606_8_info },
>> + { .compatible = "adi,ad7606b", &ad7606b_info },
>> + { .compatible = "adi,ad7616", &ad7616_info },
> Since we have .compatible = , we should also have .data = for the chip info.
ack
Powered by blists - more mailing lists