* [PATCH v2] i2c: i801: Add lis3lv02d for Dell Precision M6800 v2 Bios: A26 @ 2024-02-22 21:50 Patrick Höhn 2024-02-22 22:24 ` Andi Shyti 0 siblings, 1 reply; 3+ messages in thread From: Patrick Höhn @ 2024-02-22 21:50 UTC (permalink / raw) To: Jean Delvare, Andi Shyti Cc: Pali Rohár, Paul Menzel, Patrick Höhn, linux-i2c, linux-kernel Signed-off-by: Patrick Höhn <hoehnp@gmx.de> --- 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 2c36b36d7d51..c1fee2c61da1 100644 --- a/drivers/i2c/busses/i2c-i801.c +++ b/drivers/i2c/busses/i2c-i801.c @@ -1231,6 +1231,7 @@ static const struct { */ { "Latitude 5480", 0x29 }, { "Precision 3540", 0x29 }, + { "Precision M6800", 0x29 }, { "Vostro V131", 0x1d }, { "Vostro 5568", 0x29 }, { "XPS 15 7590", 0x29 }, -- 2.43.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] i2c: i801: Add lis3lv02d for Dell Precision M6800 v2 Bios: A26 2024-02-22 21:50 [PATCH v2] i2c: i801: Add lis3lv02d for Dell Precision M6800 v2 Bios: A26 Patrick Höhn @ 2024-02-22 22:24 ` Andi Shyti 2024-02-28 22:54 ` Patrick Höhn 0 siblings, 1 reply; 3+ messages in thread From: Andi Shyti @ 2024-02-22 22:24 UTC (permalink / raw) To: Patrick Höhn Cc: Jean Delvare, Pali Rohár, Paul Menzel, linux-i2c, linux-kernel Hi Patrick, On Thu, Feb 22, 2024 at 10:50:08PM +0100, Patrick Höhn wrote: > Signed-off-by: Patrick Höhn <hoehnp@gmx.de> I see that you've fixed almost everything that Paul has suggested, but please elaborate a bit more in the git commit. Spend some time adding a description. If you want, you can reply to this email with the commit log you have in mind, and I can add it for you, or you can send a v3. Thank you, Paul, for your excellent review. Andi PS: A small nitpick: there's no need to add 'v2' in the title. '[PATCH v2]' is sufficient. > --- > 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 2c36b36d7d51..c1fee2c61da1 100644 > --- a/drivers/i2c/busses/i2c-i801.c > +++ b/drivers/i2c/busses/i2c-i801.c > @@ -1231,6 +1231,7 @@ static const struct { > */ > { "Latitude 5480", 0x29 }, > { "Precision 3540", 0x29 }, > + { "Precision M6800", 0x29 }, > { "Vostro V131", 0x1d }, > { "Vostro 5568", 0x29 }, > { "XPS 15 7590", 0x29 }, > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] i2c: i801: Add lis3lv02d for Dell Precision M6800 v2 Bios: A26 2024-02-22 22:24 ` Andi Shyti @ 2024-02-28 22:54 ` Patrick Höhn 0 siblings, 0 replies; 3+ messages in thread From: Patrick Höhn @ 2024-02-28 22:54 UTC (permalink / raw) To: Andi Shyti Cc: Jean Delvare, Pali Rohár, Paul Menzel, linux-i2c, linux-kernel Hi Andi, sorry for the late response. Since it is the first time I am contributing, please excuse me, if my description still needs improvement. I can simply describe what I did: similiarly to what Paul did before, I identified that the M6800 has the accelerometer installed and verified its address using my running Gentoo System. Then I was applying the patch to latest kernel and confirmed that it was booting successfully and the message about a successful detection was present. Is this along the lines you expect? Best Regards, Patrick Den 2024-02-22 kl. 23:24, skrev Andi Shyti: > Hi Patrick, > > On Thu, Feb 22, 2024 at 10:50:08PM +0100, Patrick Höhn wrote: >> Signed-off-by: Patrick Höhn <hoehnp@gmx.de> > > I see that you've fixed almost everything that Paul has > suggested, but please elaborate a bit more in the git commit. > > Spend some time adding a description. If you want, you can reply > to this email with the commit log you have in mind, and I can add > it for you, or you can send a v3. > > Thank you, Paul, for your excellent review. > > Andi > > PS: A small nitpick: there's no need to add 'v2' in the title. > '[PATCH v2]' is sufficient. > >> --- >> 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 2c36b36d7d51..c1fee2c61da1 100644 >> --- a/drivers/i2c/busses/i2c-i801.c >> +++ b/drivers/i2c/busses/i2c-i801.c >> @@ -1231,6 +1231,7 @@ static const struct { >> */ >> { "Latitude 5480", 0x29 }, >> { "Precision 3540", 0x29 }, >> + { "Precision M6800", 0x29 }, >> { "Vostro V131", 0x1d }, >> { "Vostro 5568", 0x29 }, >> { "XPS 15 7590", 0x29 }, >> -- >> 2.43.0 >> ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-02-28 22:54 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-22 21:50 [PATCH v2] i2c: i801: Add lis3lv02d for Dell Precision M6800 v2 Bios: A26 Patrick Höhn 2024-02-22 22:24 ` Andi Shyti 2024-02-28 22:54 ` Patrick Höhn
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox