* [PATCH] i2c: isch: Remove unnecessary acpi.h include @ 2019-03-25 18:36 helgaas 2019-03-31 8:36 ` Jean Delvare ` (2 more replies) 0 siblings, 3 replies; 10+ messages in thread From: helgaas @ 2019-03-25 18:36 UTC (permalink / raw) To: Jean Delvare; +Cc: linux-i2c, linux-kernel, Bjorn Helgaas From: Bjorn Helgaas <bhelgaas@google.com> 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: convert i2c-isch to platform_device") removed the use of acpi_check_region() but not the include. Remove the now-unnecessary include of <linux/acpi.h>. No functional change intended. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> --- drivers/i2c/busses/i2c-isch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c index 5c754bf659e2..f64c1d72f73f 100644 --- a/drivers/i2c/busses/i2c-isch.c +++ b/drivers/i2c/busses/i2c-isch.c @@ -30,7 +30,6 @@ #include <linux/ioport.h> #include <linux/i2c.h> #include <linux/io.h> -#include <linux/acpi.h> /* SCH SMBus address offsets */ #define SMBHSTCNT (0 + sch_smba) -- 2.21.0.392.gf8f6787159e-goog ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-03-25 18:36 [PATCH] i2c: isch: Remove unnecessary acpi.h include helgaas @ 2019-03-31 8:36 ` Jean Delvare 2019-03-31 9:31 ` Mukesh Ojha 2019-04-01 13:50 ` Bjorn Helgaas 2 siblings, 0 replies; 10+ messages in thread From: Jean Delvare @ 2019-03-31 8:36 UTC (permalink / raw) To: helgaas; +Cc: linux-i2c, linux-kernel, Bjorn Helgaas On Mon, 25 Mar 2019 13:36:52 -0500, helgaas@kernel.org wrote: > From: Bjorn Helgaas <bhelgaas@google.com> > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > convert i2c-isch to platform_device") removed the use of > acpi_check_region() but not the include. > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > intended. > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > --- > drivers/i2c/busses/i2c-isch.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c > index 5c754bf659e2..f64c1d72f73f 100644 > --- a/drivers/i2c/busses/i2c-isch.c > +++ b/drivers/i2c/busses/i2c-isch.c > @@ -30,7 +30,6 @@ > #include <linux/ioport.h> > #include <linux/i2c.h> > #include <linux/io.h> > -#include <linux/acpi.h> > > /* SCH SMBus address offsets */ > #define SMBHSTCNT (0 + sch_smba) Reviewed-by: Jean Delvare <jdelvare@suse.de> (I would add a Fixes tag but maybe that's just me.) Thanks, -- Jean Delvare SUSE L3 Support ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-03-25 18:36 [PATCH] i2c: isch: Remove unnecessary acpi.h include helgaas 2019-03-31 8:36 ` Jean Delvare @ 2019-03-31 9:31 ` Mukesh Ojha 2019-04-01 13:50 ` Bjorn Helgaas 2 siblings, 0 replies; 10+ messages in thread From: Mukesh Ojha @ 2019-03-31 9:31 UTC (permalink / raw) To: helgaas, Jean Delvare; +Cc: linux-i2c, linux-kernel, Bjorn Helgaas On 3/26/2019 12:06 AM, helgaas@kernel.org wrote: > From: Bjorn Helgaas <bhelgaas@google.com> > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > convert i2c-isch to platform_device") removed the use of > acpi_check_region() but not the include. > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > intended. > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> Cheers, -Mukesh > --- > drivers/i2c/busses/i2c-isch.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c > index 5c754bf659e2..f64c1d72f73f 100644 > --- a/drivers/i2c/busses/i2c-isch.c > +++ b/drivers/i2c/busses/i2c-isch.c > @@ -30,7 +30,6 @@ > #include <linux/ioport.h> > #include <linux/i2c.h> > #include <linux/io.h> > -#include <linux/acpi.h> > > /* SCH SMBus address offsets */ > #define SMBHSTCNT (0 + sch_smba) ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-03-25 18:36 [PATCH] i2c: isch: Remove unnecessary acpi.h include helgaas 2019-03-31 8:36 ` Jean Delvare 2019-03-31 9:31 ` Mukesh Ojha @ 2019-04-01 13:50 ` Bjorn Helgaas 2019-04-01 14:08 ` Wolfram Sang 2019-04-01 15:07 ` Jean Delvare 2 siblings, 2 replies; 10+ messages in thread From: Bjorn Helgaas @ 2019-04-01 13:50 UTC (permalink / raw) To: Bjorn Helgaas Cc: Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha On Mon, Mar 25, 2019 at 1:37 PM <helgaas@kernel.org> wrote: > > From: Bjorn Helgaas <bhelgaas@google.com> > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > convert i2c-isch to platform_device") removed the use of > acpi_check_region() but not the include. > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > intended. > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Added Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") Reviewed-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> on my local branch. Jean, would you like me to repost this with the updates? I assume you will merge this (just based on get_maintainer.pl)? > --- > drivers/i2c/busses/i2c-isch.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c > index 5c754bf659e2..f64c1d72f73f 100644 > --- a/drivers/i2c/busses/i2c-isch.c > +++ b/drivers/i2c/busses/i2c-isch.c > @@ -30,7 +30,6 @@ > #include <linux/ioport.h> > #include <linux/i2c.h> > #include <linux/io.h> > -#include <linux/acpi.h> > > /* SCH SMBus address offsets */ > #define SMBHSTCNT (0 + sch_smba) > -- > 2.21.0.392.gf8f6787159e-goog > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-01 13:50 ` Bjorn Helgaas @ 2019-04-01 14:08 ` Wolfram Sang 2019-04-01 19:37 ` Bjorn Helgaas 2019-04-01 15:07 ` Jean Delvare 1 sibling, 1 reply; 10+ messages in thread From: Wolfram Sang @ 2019-04-01 14:08 UTC (permalink / raw) To: Bjorn Helgaas Cc: Bjorn Helgaas, Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha [-- Attachment #1: Type: text/plain, Size: 939 bytes --] > > From: Bjorn Helgaas <bhelgaas@google.com> > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > convert i2c-isch to platform_device") removed the use of > > acpi_check_region() but not the include. > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > intended. > > > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > Added > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > Reviewed-by: Jean Delvare <jdelvare@suse.de> > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > on my local branch. > > Jean, would you like me to repost this with the updates? I assume you > will merge this (just based on get_maintainer.pl)? I will apply it, now that it has Jean's Rev-by. I assume this is for-next material despite the Fixes tag? [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-01 14:08 ` Wolfram Sang @ 2019-04-01 19:37 ` Bjorn Helgaas 2019-04-01 19:45 ` Wolfram Sang 2019-04-03 20:57 ` Wolfram Sang 0 siblings, 2 replies; 10+ messages in thread From: Bjorn Helgaas @ 2019-04-01 19:37 UTC (permalink / raw) To: Wolfram Sang Cc: Bjorn Helgaas, Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha [-- Attachment #1: Type: text/plain, Size: 1509 bytes --] On Mon, Apr 1, 2019 at 9:08 AM Wolfram Sang <wsa@the-dreams.de> wrote: > > > > > From: Bjorn Helgaas <bhelgaas@google.com> > > > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > > convert i2c-isch to platform_device") removed the use of > > > acpi_check_region() but not the include. > > > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > > intended. > > > > > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > > > Added > > > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > > Reviewed-by: Jean Delvare <jdelvare@suse.de> > > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > > > on my local branch. > > > > Jean, would you like me to repost this with the updates? I assume you > > will merge this (just based on get_maintainer.pl)? > > I will apply it, now that it has Jean's Rev-by. I assume this is > for-next material despite the Fixes tag? Definitely for-next material, not for the current release. Jean suggested the Fixes tag, I think since it's related to a specific commit and could be backported together with that commit. Should there be a MAINTAINERS update to clarify who applies patches to drivers/i2c/busses/i2c-isch.c? Right now, get_maintainers.pl doesn't mention you (Wolfram). Patch with tags attached in case it's useful to you (sorry, I'm saddled with gmail right now and can't include it inline). [-- Attachment #2: 0001-i2c-isch-Remove-unnecessary-acpi.h-include.patch --] [-- Type: text/x-patch, Size: 1227 bytes --] From 36fbdab89f5b8aa2d3616bd289e2c695fd3c0f9b Mon Sep 17 00:00:00 2001 From: Bjorn Helgaas <bhelgaas@google.com> Date: Tue, 30 Oct 2018 14:12:36 -0500 Subject: [PATCH] i2c: isch: Remove unnecessary acpi.h include 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: convert i2c-isch to platform_device") removed the use of acpi_check_region() but not the include. Remove the now-unnecessary include of <linux/acpi.h>. No functional change intended. Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Reviewed-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> --- drivers/i2c/busses/i2c-isch.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/i2c/busses/i2c-isch.c b/drivers/i2c/busses/i2c-isch.c index 5c754bf659e2..f64c1d72f73f 100644 --- a/drivers/i2c/busses/i2c-isch.c +++ b/drivers/i2c/busses/i2c-isch.c @@ -30,7 +30,6 @@ #include <linux/ioport.h> #include <linux/i2c.h> #include <linux/io.h> -#include <linux/acpi.h> /* SCH SMBus address offsets */ #define SMBHSTCNT (0 + sch_smba) -- 2.21.0.392.gf8f6787159e-goog ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-01 19:37 ` Bjorn Helgaas @ 2019-04-01 19:45 ` Wolfram Sang 2019-04-03 20:57 ` Wolfram Sang 1 sibling, 0 replies; 10+ messages in thread From: Wolfram Sang @ 2019-04-01 19:45 UTC (permalink / raw) To: Bjorn Helgaas Cc: Bjorn Helgaas, Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha [-- Attachment #1: Type: text/plain, Size: 1116 bytes --] > > > Jean, would you like me to repost this with the updates? I assume you > > > will merge this (just based on get_maintainer.pl)? > > > > I will apply it, now that it has Jean's Rev-by. I assume this is > > for-next material despite the Fixes tag? > > Definitely for-next material, not for the current release. Jean > suggested the Fixes tag, I think since it's related to a specific > commit and could be backported together with that commit. Makes sense. > Should there be a MAINTAINERS update to clarify who applies patches to > drivers/i2c/busses/i2c-isch.c? Right now, get_maintainers.pl doesn't > mention you (Wolfram). I have set the i2c/busses directory to 'Odd Fixes' in MAINTAINERS. I don't want to be mentioned for specific drivers. I am eagerly looking for driver maintainers to spread reponsibility. Maybe my tree could be added to Jean's maintainer entry, but not sure what that is worth... > Patch with tags attached in case it's useful to you (sorry, I'm > saddled with gmail right now and can't include it inline). No worries. Patchwork keeps it all for me. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-01 19:37 ` Bjorn Helgaas 2019-04-01 19:45 ` Wolfram Sang @ 2019-04-03 20:57 ` Wolfram Sang 2019-04-03 22:27 ` Bjorn Helgaas 1 sibling, 1 reply; 10+ messages in thread From: Wolfram Sang @ 2019-04-03 20:57 UTC (permalink / raw) To: Bjorn Helgaas Cc: Bjorn Helgaas, Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha [-- Attachment #1: Type: text/plain, Size: 2729 bytes --] On Mon, Apr 01, 2019 at 02:37:19PM -0500, Bjorn Helgaas wrote: > On Mon, Apr 1, 2019 at 9:08 AM Wolfram Sang <wsa@the-dreams.de> wrote: > > > > > > > > From: Bjorn Helgaas <bhelgaas@google.com> > > > > > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > > > convert i2c-isch to platform_device") removed the use of > > > > acpi_check_region() but not the include. > > > > > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > > > intended. > > > > > > > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > > > > > Added > > > > > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > > > Reviewed-by: Jean Delvare <jdelvare@suse.de> > > > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > > > > > on my local branch. > > > > > > Jean, would you like me to repost this with the updates? I assume you > > > will merge this (just based on get_maintainer.pl)? > > > > I will apply it, now that it has Jean's Rev-by. I assume this is > > for-next material despite the Fixes tag? > > Definitely for-next material, not for the current release. Jean > suggested the Fixes tag, I think since it's related to a specific > commit and could be backported together with that commit. > > Should there be a MAINTAINERS update to clarify who applies patches to > drivers/i2c/busses/i2c-isch.c? Right now, get_maintainers.pl doesn't > mention you (Wolfram). > > Patch with tags attached in case it's useful to you (sorry, I'm > saddled with gmail right now and can't include it inline). > From 36fbdab89f5b8aa2d3616bd289e2c695fd3c0f9b Mon Sep 17 00:00:00 2001 > From: Bjorn Helgaas <bhelgaas@google.com> > Date: Tue, 30 Oct 2018 14:12:36 -0500 > Subject: [PATCH] i2c: isch: Remove unnecessary acpi.h include > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > convert i2c-isch to platform_device") removed the use of > acpi_check_region() but not the include. > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > intended. > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > Reviewed-by: Jean Delvare <jdelvare@suse.de> > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> Fixed this checkpatch error: ERROR: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit fd46a0064af1 ("i2c: convert i2c-isch to platform_device")' and applied to for-next, thanks! [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-03 20:57 ` Wolfram Sang @ 2019-04-03 22:27 ` Bjorn Helgaas 0 siblings, 0 replies; 10+ messages in thread From: Bjorn Helgaas @ 2019-04-03 22:27 UTC (permalink / raw) To: Wolfram Sang Cc: Bjorn Helgaas, Jean Delvare, linux-i2c, Linux Kernel Mailing List, Mukesh Ojha On Wed, Apr 3, 2019 at 3:57 PM Wolfram Sang <wsa@the-dreams.de> wrote: > > On Mon, Apr 01, 2019 at 02:37:19PM -0500, Bjorn Helgaas wrote: > > On Mon, Apr 1, 2019 at 9:08 AM Wolfram Sang <wsa@the-dreams.de> wrote: > > > > > > > > > > > From: Bjorn Helgaas <bhelgaas@google.com> > > > > > > > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > > > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > > > > convert i2c-isch to platform_device") removed the use of > > > > > acpi_check_region() but not the include. > > > > > > > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > > > > intended. > > > > > > > > > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > > > > > > > Added > > > > > > > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > > > > Reviewed-by: Jean Delvare <jdelvare@suse.de> > > > > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > > > > > > > on my local branch. > > > > > > > > Jean, would you like me to repost this with the updates? I assume you > > > > will merge this (just based on get_maintainer.pl)? > > > > > > I will apply it, now that it has Jean's Rev-by. I assume this is > > > for-next material despite the Fixes tag? > > > > Definitely for-next material, not for the current release. Jean > > suggested the Fixes tag, I think since it's related to a specific > > commit and could be backported together with that commit. > > > > Should there be a MAINTAINERS update to clarify who applies patches to > > drivers/i2c/busses/i2c-isch.c? Right now, get_maintainers.pl doesn't > > mention you (Wolfram). > > > > Patch with tags attached in case it's useful to you (sorry, I'm > > saddled with gmail right now and can't include it inline). > > > From 36fbdab89f5b8aa2d3616bd289e2c695fd3c0f9b Mon Sep 17 00:00:00 2001 > > From: Bjorn Helgaas <bhelgaas@google.com> > > Date: Tue, 30 Oct 2018 14:12:36 -0500 > > Subject: [PATCH] i2c: isch: Remove unnecessary acpi.h include > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > convert i2c-isch to platform_device") removed the use of > > acpi_check_region() but not the include. > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > intended. > > > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > Reviewed-by: Jean Delvare <jdelvare@suse.de> > > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > Fixed this checkpatch error: > > ERROR: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit fd46a0064af1 ("i2c: convert i2c-isch to platform_device")' Thanks, I didn't even know about that requirement for the word "commit"! I assume this only applies in the text, not in the "Fixes:" tag. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] i2c: isch: Remove unnecessary acpi.h include 2019-04-01 13:50 ` Bjorn Helgaas 2019-04-01 14:08 ` Wolfram Sang @ 2019-04-01 15:07 ` Jean Delvare 1 sibling, 0 replies; 10+ messages in thread From: Jean Delvare @ 2019-04-01 15:07 UTC (permalink / raw) To: Bjorn Helgaas, Bjorn Helgaas Cc: linux-i2c, Linux Kernel Mailing List, Mukesh Ojha, Wolfram Sang Hi Bjorn, On Mon, 2019-04-01 at 08:50 -0500, Bjorn Helgaas wrote: > On Mon, Mar 25, 2019 at 1:37 PM <helgaas@kernel.org> wrote: > > > > From: Bjorn Helgaas <bhelgaas@google.com> > > > > 54fb4a05af0a ("i2c: Check for ACPI resource conflicts") included > > <linux/acpi.h> so we could use acpi_check_region(). fd46a0064af1 ("i2c: > > convert i2c-isch to platform_device") removed the use of > > acpi_check_region() but not the include. > > > > Remove the now-unnecessary include of <linux/acpi.h>. No functional change > > intended. > > > > Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> > > Added > > Fixes: fd46a0064af1 ("i2c: convert i2c-isch to platform_device") > Reviewed-by: Jean Delvare <jdelvare@suse.de> > Reviewed-by: Mukesh Ojha <mojha@codeaurora.org> > > on my local branch. > > Jean, would you like me to repost this with the updates? I assume you > will merge this (just based on get_maintainer.pl)? No, Wolfram prefers to pick all the i2c patches into his own branch, I'm only giving my Reviewed-by. So your question is for him. Thanks, -- Jean Delvare SUSE L3 Support ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2019-04-03 22:27 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-03-25 18:36 [PATCH] i2c: isch: Remove unnecessary acpi.h include helgaas 2019-03-31 8:36 ` Jean Delvare 2019-03-31 9:31 ` Mukesh Ojha 2019-04-01 13:50 ` Bjorn Helgaas 2019-04-01 14:08 ` Wolfram Sang 2019-04-01 19:37 ` Bjorn Helgaas 2019-04-01 19:45 ` Wolfram Sang 2019-04-03 20:57 ` Wolfram Sang 2019-04-03 22:27 ` Bjorn Helgaas 2019-04-01 15:07 ` Jean Delvare
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).