public inbox for linux-iio@vger.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Hans de Goede <hdegoede@redhat.com>
Cc: Marius Hoch <mail@mariushoch.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] iio: light: al3320a: Handle ACPI device CALS0001
Date: Sun, 23 Apr 2023 12:11:14 +0100	[thread overview]
Message-ID: <20230423121114.017d2b0b@jic23-huawei> (raw)
In-Reply-To: <6feb48c8-6d74-6605-b7d1-48103ca9187e@redhat.com>

On Fri, 21 Apr 2023 11:36:51 +0200
Hans de Goede <hdegoede@redhat.com> wrote:

> Hi,
> 
> On 4/21/23 01:26, Marius Hoch wrote:
> > This sensor can be found as CALS0001 on the Lenovo Yoga
> > Tablet 2 series.
> > 
> > Tested on a Lenovo Yoga Tablet 2 1051-F.
> > 
> > Signed-off-by: Marius Hoch <mail@mariushoch.de>
> > ---
> > v2: Explicitly include <linux/mod_devicetable.h> (don't rely on
> > linux/i2c.h including it)  
> 
> Thanks, the patch looks good to me and I have
> tested this successfully on a Lenovo Yoga Tablet 2 851F :
> 
> Tested-by: Hans de Goede <hdegoede@redhat.com>
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
> 
> Regards,
> 
> Hans
> 
> 
Ah..  I'll drop previous edited version that did the same thing.

In general if you are going to send a new version of a patch when there
has been not response to previous one, please just reply yourself to
that original thread.

Anyhow, now applied this one.

Thanks,

Jonathan

> 
> 
> > ---
> >  drivers/iio/light/al3320a.c | 8 ++++++++
> >  1 file changed, 8 insertions(+)
> > 
> > diff --git a/drivers/iio/light/al3320a.c b/drivers/iio/light/al3320a.c
> > index 9ff28bbf34bb..36214d790f71 100644
> > --- a/drivers/iio/light/al3320a.c
> > +++ b/drivers/iio/light/al3320a.c
> > @@ -16,6 +16,7 @@
> >  #include <linux/i2c.h>
> >  #include <linux/module.h>
> >  #include <linux/of.h>
> > +#include <linux/mod_devicetable.h>
> >  
> >  #include <linux/iio/iio.h>
> >  #include <linux/iio/sysfs.h>
> > @@ -247,11 +248,18 @@ static const struct of_device_id al3320a_of_match[] = {
> >  };
> >  MODULE_DEVICE_TABLE(of, al3320a_of_match);
> >  
> > +static const struct acpi_device_id al3320a_acpi_match[] = {
> > +	{"CALS0001"},
> > +	{ },
> > +};
> > +MODULE_DEVICE_TABLE(acpi, al3320a_acpi_match);
> > +
> >  static struct i2c_driver al3320a_driver = {
> >  	.driver = {
> >  		.name = AL3320A_DRV_NAME,
> >  		.of_match_table = al3320a_of_match,
> >  		.pm = pm_sleep_ptr(&al3320a_pm_ops),
> > +		.acpi_match_table = al3320a_acpi_match,
> >  	},
> >  	.probe_new	= al3320a_probe,
> >  	.id_table	= al3320a_id,
> > 
> > base-commit: cb0856346a60fe3eb837ba5e73588a41f81ac05f  
> 


      reply	other threads:[~2023-04-23 10:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-20 23:26 [PATCH v2] iio: light: al3320a: Handle ACPI device CALS0001 Marius Hoch
2023-04-21  9:36 ` Hans de Goede
2023-04-23 11:11   ` Jonathan Cameron [this message]

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=20230423121114.017d2b0b@jic23-huawei \
    --to=jic23@kernel.org \
    --cc=hdegoede@redhat.com \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mail@mariushoch.de \
    /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