From: Hans de Goede <hdegoede@redhat.com>
To: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
Cc: Andy Shevchenko <andy@kernel.org>, platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH v2 1/3] platform/x86: x86-android-tablets: Add get_i2c_adap_by_handle() helper
Date: Tue, 5 Nov 2024 11:45:50 +0100 [thread overview]
Message-ID: <1b60b0ff-bbc9-4d14-9b3f-ebec0d1743b6@redhat.com> (raw)
In-Reply-To: <2027eeb6-f5c6-4ad3-042e-2cf3daf683db@linux.intel.com>
Hi Ilpo,
On 5-Nov-24 10:37 AM, Ilpo Järvinen wrote:
> On Mon, 4 Nov 2024, Hans de Goede wrote:
>
>> Add get_i2c_adap_by_handle() helper function, this is a preparation patch
>> for adding support for getting i2c_adapter-s by PCI parent devname().
>>
>> Suggested-by: Andy Shevchenko <andy@kernel.org>
>> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
>> ---
>> Changes in v2:
>> - New patch in v2 of this series
>> ---
>> .../platform/x86/x86-android-tablets/core.c | 25 ++++++++++++-------
>> 1 file changed, 16 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/platform/x86/x86-android-tablets/core.c b/drivers/platform/x86/x86-android-tablets/core.c
>> index ef572b90e06b..4154395c60bb 100644
>> --- a/drivers/platform/x86/x86-android-tablets/core.c
>> +++ b/drivers/platform/x86/x86-android-tablets/core.c
>> @@ -155,26 +155,33 @@ static struct gpiod_lookup_table * const *gpiod_lookup_tables;
>> static const struct software_node *bat_swnode;
>> static void (*exit_handler)(void);
>>
>> +static struct i2c_adapter *
>> +get_i2c_adap_by_handle(const struct x86_i2c_client_info *client_info)
>> +{
>> + acpi_handle handle;
>> + acpi_status status;
>> +
>> + status = acpi_get_handle(NULL, client_info->adapter_path, &handle);
>> + if (ACPI_FAILURE(status)) {
>> + pr_err("Error could not get %s handle\n", client_info->adapter_path);
>> + return NULL;
>> + }
>> +
>> + return i2c_acpi_find_adapter_by_handle(handle);
>> +}
>> +
>> static __init int x86_instantiate_i2c_client(const struct x86_dev_info *dev_info,
>> int idx)
>> {
>> const struct x86_i2c_client_info *client_info = &dev_info->i2c_client_info[idx];
>> struct i2c_board_info board_info = client_info->board_info;
>> struct i2c_adapter *adap;
>> - acpi_handle handle;
>> - acpi_status status;
>>
>> board_info.irq = x86_acpi_irq_helper_get(&client_info->irq_data);
>> if (board_info.irq < 0)
>> return board_info.irq;
>>
>> - status = acpi_get_handle(NULL, client_info->adapter_path, &handle);
>> - if (ACPI_FAILURE(status)) {
>> - pr_err("Error could not get %s handle\n", client_info->adapter_path);
>> - return -ENODEV;
>> - }
>> -
>> - adap = i2c_acpi_find_adapter_by_handle(handle);
>> + adap = get_i2c_adap_by_handle(client_info);
>> if (!adap) {
>> pr_err("error could not get %s adapter\n", client_info->adapter_path);
>> return -ENODEV;
>
> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
>
> Not a big deal, but you might want to consider if printing both error
> messages is fine or if the error printing should be somehow modified when
> that other print moves into the inner function.
I already considered this and since this should never happen
printing both messages if it does happen is fine IMHO.
Basically the idea is if the acpi_get_handle() fails print both
messages, if the i2c_acpi_find_adapter_by_handle() fails only
print the latter message. This way one can tell one scenario
from the other while keeping the logic simple.
The same applies to the get_i2c_adap_by_pci_parent() helper
added in patch 2.
Regards,
Hans
next prev parent reply other threads:[~2024-11-05 10:45 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-04 20:08 [PATCH v2 0/3] platform/x86: x86-android-tablets: Add support for Vexia EDU ATLA 10 tablet Hans de Goede
2024-11-04 20:08 ` [PATCH v2 1/3] platform/x86: x86-android-tablets: Add get_i2c_adap_by_handle() helper Hans de Goede
2024-11-05 8:21 ` Andy Shevchenko
2024-11-05 9:37 ` Ilpo Järvinen
2024-11-05 10:45 ` Hans de Goede [this message]
2024-11-04 20:08 ` [PATCH v2 2/3] platform/x86: x86-android-tablets: Add support for getting i2c_adapter by PCI parent devname() Hans de Goede
2024-11-05 8:22 ` Andy Shevchenko
2024-11-05 10:47 ` Hans de Goede
2024-11-06 13:25 ` Ilpo Järvinen
2024-11-06 21:18 ` Hans de Goede
2024-11-04 20:08 ` [PATCH v2 3/3] platform/x86: x86-android-tablets: Add support for Vexia EDU ATLA 10 tablet Hans de Goede
2024-11-05 8:28 ` Andy Shevchenko
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=1b60b0ff-bbc9-4d14-9b3f-ebec0d1743b6@redhat.com \
--to=hdegoede@redhat.com \
--cc=andy@kernel.org \
--cc=ilpo.jarvinen@linux.intel.com \
--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