From: Hans de Goede <hdegoede@redhat.com>
To: Andy Shevchenko <andy.shevchenko@gmail.com>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
"platform-driver-x86@vger.kernel.org"
<platform-driver-x86@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Mark Gross <markgross@kernel.org>
Subject: Re: [PATCH v1 2/7] platform/x86: serial-multi-instantiate: Improve autodetection
Date: Sat, 9 Jul 2022 16:46:00 +0200 [thread overview]
Message-ID: <10c418eb-78a4-294f-adc4-d08db07dc67c@redhat.com> (raw)
In-Reply-To: <CAHp75Vcfr9mjgWPRwg8i5OatEyLCDR-vMazarSAtJXd_-Fee-w@mail.gmail.com>
Hi Andy,
On 7/9/22 13:34, Andy Shevchenko wrote:
> On Sat, Jul 9, 2022 at 1:00 PM Hans de Goede <hdegoede@redhat.com> wrote:
>> On 7/9/22 11:52, Andy Shevchenko wrote:
>>> On Saturday, July 9, 2022, Hans de Goede <hdegoede@redhat.com <mailto:hdegoede@redhat.com>> wrote:
>>> On 7/9/22 02:06, Andy Shevchenko wrote:
>
> ...
>
>>> So nack for this
>>>
>>> This effectively means nack to the series.
>
>>> But it’s easy to fix. I can add check for ret == 0.
>
> So, are you okay with fixing it this way? See below how.
>
>> I don't see how this is a nack for the series, just drop 1/7 + 2/7
>> and rebase the rest. Yes there will be conflicts to resolve in
>> the rebase, but the rest of the cleanups can still go upstream
>> after the rebase.
>
> Because patch 3 makes a little sense on its own if we drop the patch
> 2. The rest is the simple cleanups which I do not consider as a core
> of this series.
Patch 3 just removes the adev == NULL check and pushes
the ACPI_COMPANION(dev) calls into the function needing
the adev, I don't see how that relies on this patch ?
>>> > case SMI_AUTO_DETECT:
>>> > - if (i2c_acpi_client_count(adev) > 0)
>>> > - return smi_i2c_probe(pdev, adev, smi, node->instances);
>>> > - else
>>> > - return smi_spi_probe(pdev, adev, smi, node->instances);
>>> > + ret = smi_i2c_probe(pdev, adev, smi, node->instances);
>>> > + if (ret && ret != -ENOENT)
>>> > + return ret;
>
> /*
> * ...comment about why we do the following check...
> */
> if (ret == 0)
> return ret;
I'm ok with doing things this way. Note you then end up with:
if (ret && ret != -ENOENT)
return ret;
if (ret == 0)
return ret;
Which can be simplified to just:
if (ret != -ENOENT)
return ret;
>
>>> > + ret = smi_spi_probe(pdev, adev, smi, node->instances);
>>> > + if (ret && ret != -ENOENT)
>>> > + return ret;
>>> > + if (ret)
>>> > + return dev_err_probe(dev, ret, "Error No resources found\n");
>>> > + break;
>
> if (ret == -ENOENT)
> return dev_err_probe(...);
> return ret;
Hmm, we don't do this dev_err for the SMI_I2C / SMI_SPI cases,
I see 2 options to solve this:
1) Drop the return calls from switch (node->bus_type) {} instead
always set ret and then break. And do the:
if (ret == -ENOENT)
return dev_err_probe(...);
outside the switch-case
2) Drop the dev_err, the driver-core will already log an error for
the -ENOENT anyways.
Regards,
Hans
next prev parent reply other threads:[~2022-07-09 14:48 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-09 0:06 [PATCH v1 1/7] platform/x86: serial-multi-instantiate: return -ENOENT when no resources found Andy Shevchenko
2022-07-09 0:06 ` [PATCH v1 2/7] platform/x86: serial-multi-instantiate: Improve autodetection Andy Shevchenko
2022-07-09 9:47 ` Hans de Goede
[not found] ` <CAHp75VfVoTcZD7vXxXckxu-crsXr7m4bx8F9D9cs2TtBbyeYqQ@mail.gmail.com>
2022-07-09 11:00 ` Hans de Goede
2022-07-09 11:34 ` Andy Shevchenko
2022-07-09 14:46 ` Hans de Goede [this message]
2022-07-09 9:48 ` Hans de Goede
2022-07-09 0:06 ` [PATCH v1 3/7] platform/x86: serial-multi-instantiate: Drop duplicate check Andy Shevchenko
2022-07-09 9:50 ` Hans de Goede
2022-07-09 0:06 ` [PATCH v1 4/7] platform/x86: serial-multi-instantiate: Improve dev_err_probe() messaging Andy Shevchenko
2022-07-09 0:06 ` [PATCH v1 5/7] platform/x86: serial-multi-instantiate: Use while (i--) pattern to clean up Andy Shevchenko
2022-07-09 0:06 ` [PATCH v1 6/7] platform/x86: serial-multi-instantiate: Get rid of redundant 'else' Andy Shevchenko
2022-07-09 0:06 ` [PATCH v1 7/7] platform/x86: serial-multi-instantiate: Sort ACPI IDs by HID Andy Shevchenko
2022-07-09 9:45 ` [PATCH v1 1/7] platform/x86: serial-multi-instantiate: return -ENOENT when no resources found Hans de Goede
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=10c418eb-78a4-294f-adc4-d08db07dc67c@redhat.com \
--to=hdegoede@redhat.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=markgross@kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
/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