linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
@ 2020-06-16 23:41 Jeffrey Lin
  2020-08-05  9:33 ` wsa
  2020-09-02  4:51 ` [PATCH v2] " Jeffrey Lin
  0 siblings, 2 replies; 5+ messages in thread
From: Jeffrey Lin @ 2020-06-16 23:41 UTC (permalink / raw)
  To: jdelvare; +Cc: linux-i2c, linux-kernel, Jeffrey Lin

Value of /sys/devices/platform/lis3lv02d/position when
    Horizontal:     (36,-108,-1152)
    Left elevated:  (-432,-126,-1062)
    Front elevated: (36,594,-936)
    Upside down:    (-126,-252,1098)

Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>
---
 drivers/i2c/busses/i2c-i801.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index fea644921a76..d7c802e20ae6 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -1268,6 +1268,7 @@ static const struct {
 	/*
 	 * Additional individual entries were added after verification.
 	 */
+	{ "Latitude 5480",      0x29 },
 	{ "Vostro V131",        0x1d },
 };
 
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
  2020-06-16 23:41 [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480 Jeffrey Lin
@ 2020-08-05  9:33 ` wsa
  2020-08-31  8:13   ` Jean Delvare
  2020-09-02  4:51 ` [PATCH v2] " Jeffrey Lin
  1 sibling, 1 reply; 5+ messages in thread
From: wsa @ 2020-08-05  9:33 UTC (permalink / raw)
  To: Jeffrey Lin; +Cc: jdelvare, linux-i2c, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 867 bytes --]

On Tue, Jun 16, 2020 at 07:41:30PM -0400, Jeffrey Lin wrote:
> Value of /sys/devices/platform/lis3lv02d/position when
>     Horizontal:     (36,-108,-1152)
>     Left elevated:  (-432,-126,-1062)
>     Front elevated: (36,594,-936)
>     Upside down:    (-126,-252,1098)
> 
> Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>

Jean?

> ---
>  drivers/i2c/busses/i2c-i801.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index fea644921a76..d7c802e20ae6 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -1268,6 +1268,7 @@ static const struct {
>  	/*
>  	 * Additional individual entries were added after verification.
>  	 */
> +	{ "Latitude 5480",      0x29 },
>  	{ "Vostro V131",        0x1d },
>  };
>  
> -- 
> 2.27.0
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
  2020-08-05  9:33 ` wsa
@ 2020-08-31  8:13   ` Jean Delvare
  0 siblings, 0 replies; 5+ messages in thread
From: Jean Delvare @ 2020-08-31  8:13 UTC (permalink / raw)
  To: wsa; +Cc: Jeffrey Lin, linux-i2c, linux-kernel

Hi Wolfram,

On Wed, 05 Aug 2020 11:33:47 +0200, wsa@kernel.org wrote:
> On Tue, Jun 16, 2020 at 07:41:30PM -0400, Jeffrey Lin wrote:
> > Value of /sys/devices/platform/lis3lv02d/position when
> >     Horizontal:     (36,-108,-1152)
> >     Left elevated:  (-432,-126,-1062)
> >     Front elevated: (36,594,-936)
> >     Upside down:    (-126,-252,1098)
> > 
> > Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>  
> 
> Jean?
> 
> > ---
> >  drivers/i2c/busses/i2c-i801.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> > index fea644921a76..d7c802e20ae6 100644
> > --- a/drivers/i2c/busses/i2c-i801.c
> > +++ b/drivers/i2c/busses/i2c-i801.c
> > @@ -1268,6 +1268,7 @@ static const struct {
> >  	/*
> >  	 * Additional individual entries were added after verification.
> >  	 */
> > +	{ "Latitude 5480",      0x29 },
> >  	{ "Vostro V131",        0x1d },
> >  };
> >  

No actual code change and not something I can test, so pretty much any
kernel developer is as qualified as I am to deal with it. But yes, OK,
I'm listed as the maintainer for this driver, so I should have replied
earlier, sorry.

Reviewed-by: Jean Delvare <jdelvare@suse.de>

-- 
Jean Delvare
SUSE L3 Support

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
  2020-06-16 23:41 [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480 Jeffrey Lin
  2020-08-05  9:33 ` wsa
@ 2020-09-02  4:51 ` Jeffrey Lin
  2020-09-09  8:29   ` Wolfram Sang
  1 sibling, 1 reply; 5+ messages in thread
From: Jeffrey Lin @ 2020-09-02  4:51 UTC (permalink / raw)
  To: jeffrey; +Cc: jdelvare, linux-i2c, linux-kernel, Jean Delvare

Value of /sys/devices/platform/lis3lv02d/position when
    Horizontal:     (36,-108,-1152)
    Left elevated:  (-432,-126,-1062)
    Front elevated: (36,594,-936)
    Upside down:    (-126,-252,1098)

Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>
Reviewed-by: Jean Delvare <jdelvare@suse.de>
---

Changes in v2:
- Added Jean's Reviewed-by

 drivers/i2c/busses/i2c-i801.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index e32ef3f01fe8..efab1e71ad6a 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -1274,6 +1274,7 @@ static const struct {
 	/*
 	 * Additional individual entries were added after verification.
 	 */
+	{ "Latitude 5480",      0x29 },
 	{ "Vostro V131",        0x1d },
 };
 
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480
  2020-09-02  4:51 ` [PATCH v2] " Jeffrey Lin
@ 2020-09-09  8:29   ` Wolfram Sang
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfram Sang @ 2020-09-09  8:29 UTC (permalink / raw)
  To: Jeffrey Lin; +Cc: jdelvare, linux-i2c, linux-kernel, Jean Delvare

[-- Attachment #1: Type: text/plain, Size: 413 bytes --]

On Wed, Sep 02, 2020 at 12:51:37AM -0400, Jeffrey Lin wrote:
> Value of /sys/devices/platform/lis3lv02d/position when
>     Horizontal:     (36,-108,-1152)
>     Left elevated:  (-432,-126,-1062)
>     Front elevated: (36,594,-936)
>     Upside down:    (-126,-252,1098)
> 
> Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>
> Reviewed-by: Jean Delvare <jdelvare@suse.de>

Applied to for-next, thanks!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-09-09  8:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-16 23:41 [PATCH] i2c: i801: Register lis3lv02d I2C device on Dell Latitude 5480 Jeffrey Lin
2020-08-05  9:33 ` wsa
2020-08-31  8:13   ` Jean Delvare
2020-09-02  4:51 ` [PATCH v2] " Jeffrey Lin
2020-09-09  8:29   ` Wolfram Sang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).