All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
@ 2023-02-03 21:01 Elliot Berman
  2023-02-03 21:56 ` Guru Das Srinagesh
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Elliot Berman @ 2023-02-03 21:01 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mark Brown,
	Greg Kroah-Hartman, Jiri Slaby
  Cc: Elliot Berman, Visweswara Tanuku, linux-arm-msm, linux-i2c,
	linux-kernel, linux-spi, linux-serial

Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
This removes 1 of a few remaining Qualcomm-specific headers into a more
approciate subdirectory under include/.

Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>
---
 drivers/i2c/busses/i2c-qcom-geni.c                   | 2 +-
 drivers/soc/qcom/qcom-geni-se.c                      | 2 +-
 drivers/spi/spi-geni-qcom.c                          | 2 +-
 drivers/tty/serial/qcom_geni_serial.c                | 2 +-
 include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} | 0
 5 files changed, 4 insertions(+), 4 deletions(-)
 rename include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} (100%)

diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c
index fd70794bfcee..80d586b0be7a 100644
--- a/drivers/i2c/busses/i2c-qcom-geni.c
+++ b/drivers/i2c/busses/i2c-qcom-geni.c
@@ -14,7 +14,7 @@
 #include <linux/of.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
-#include <linux/qcom-geni-se.h>
+#include <linux/soc/qcom/geni-se.h>
 #include <linux/spinlock.h>
 
 #define SE_I2C_TX_TRANS_LEN		0x26c
diff --git a/drivers/soc/qcom/qcom-geni-se.c b/drivers/soc/qcom/qcom-geni-se.c
index f0475b93ca73..795a2e1d59b3 100644
--- a/drivers/soc/qcom/qcom-geni-se.c
+++ b/drivers/soc/qcom/qcom-geni-se.c
@@ -14,7 +14,7 @@
 #include <linux/of_platform.h>
 #include <linux/pinctrl/consumer.h>
 #include <linux/platform_device.h>
-#include <linux/qcom-geni-se.h>
+#include <linux/soc/qcom/geni-se.h>
 
 /**
  * DOC: Overview
diff --git a/drivers/spi/spi-geni-qcom.c b/drivers/spi/spi-geni-qcom.c
index 4e83cc5b445d..e05e40a49294 100644
--- a/drivers/spi/spi-geni-qcom.c
+++ b/drivers/spi/spi-geni-qcom.c
@@ -12,7 +12,7 @@
 #include <linux/platform_device.h>
 #include <linux/pm_opp.h>
 #include <linux/pm_runtime.h>
-#include <linux/qcom-geni-se.h>
+#include <linux/soc/qcom/geni-se.h>
 #include <linux/spi/spi.h>
 #include <linux/spinlock.h>
 
diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c
index b487823f0e61..52f3a0184577 100644
--- a/drivers/tty/serial/qcom_geni_serial.c
+++ b/drivers/tty/serial/qcom_geni_serial.c
@@ -16,7 +16,7 @@
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
 #include <linux/pm_wakeirq.h>
-#include <linux/qcom-geni-se.h>
+#include <linux/soc/qcom/geni-se.h>
 #include <linux/serial.h>
 #include <linux/serial_core.h>
 #include <linux/slab.h>
diff --git a/include/linux/qcom-geni-se.h b/include/linux/soc/qcom/geni-se.h
similarity index 100%
rename from include/linux/qcom-geni-se.h
rename to include/linux/soc/qcom/geni-se.h

base-commit: 3866989ec2c319341e2cf69ec6116269b634a271
-- 
2.39.1


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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-03 21:01 [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h Elliot Berman
@ 2023-02-03 21:56 ` Guru Das Srinagesh
  2023-02-04  7:04 ` Wolfram Sang
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 7+ messages in thread
From: Guru Das Srinagesh @ 2023-02-03 21:56 UTC (permalink / raw)
  To: Elliot Berman
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mark Brown,
	Greg Kroah-Hartman, Jiri Slaby, Visweswara Tanuku, linux-arm-msm,
	linux-i2c, linux-kernel, linux-spi, linux-serial

On Feb 03 2023 13:01, Elliot Berman wrote:
> Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> This removes 1 of a few remaining Qualcomm-specific headers into a more
> approciate subdirectory under include/.
> 
> Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>

Reviewed-by: Guru Das Srinagesh <quic_gurus@quicinc.com>

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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-03 21:01 [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h Elliot Berman
  2023-02-03 21:56 ` Guru Das Srinagesh
@ 2023-02-04  7:04 ` Wolfram Sang
  2023-02-04  7:51 ` Greg Kroah-Hartman
  2023-02-06 18:17 ` Elliot Berman
  3 siblings, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2023-02-04  7:04 UTC (permalink / raw)
  To: Elliot Berman
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mark Brown,
	Greg Kroah-Hartman, Jiri Slaby, Visweswara Tanuku, linux-arm-msm,
	linux-i2c, linux-kernel, linux-spi, linux-serial

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

On Fri, Feb 03, 2023 at 01:01:32PM -0800, Elliot Berman wrote:
> Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> This removes 1 of a few remaining Qualcomm-specific headers into a more
> approciate subdirectory under include/.
> 
> Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>

Acked-by: Wolfram Sang <wsa@kernel.org> # for I2C


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

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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-03 21:01 [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h Elliot Berman
  2023-02-03 21:56 ` Guru Das Srinagesh
  2023-02-04  7:04 ` Wolfram Sang
@ 2023-02-04  7:51 ` Greg Kroah-Hartman
  2023-02-09  3:14   ` Bjorn Andersson
  2023-02-06 18:17 ` Elliot Berman
  3 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2023-02-04  7:51 UTC (permalink / raw)
  To: Elliot Berman
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mark Brown,
	Jiri Slaby, Visweswara Tanuku, linux-arm-msm, linux-i2c,
	linux-kernel, linux-spi, linux-serial

On Fri, Feb 03, 2023 at 01:01:32PM -0800, Elliot Berman wrote:
> Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> This removes 1 of a few remaining Qualcomm-specific headers into a more
> approciate subdirectory under include/.
> 
> Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>
> ---
>  drivers/i2c/busses/i2c-qcom-geni.c                   | 2 +-
>  drivers/soc/qcom/qcom-geni-se.c                      | 2 +-
>  drivers/spi/spi-geni-qcom.c                          | 2 +-
>  drivers/tty/serial/qcom_geni_serial.c                | 2 +-
>  include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} | 0
>  5 files changed, 4 insertions(+), 4 deletions(-)
>  rename include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} (100%)

Who do you want to take this patch?  Through what tree?  I can take it
through the tty tree if no one objects, otherwise if someone else is:

Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-03 21:01 [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h Elliot Berman
                   ` (2 preceding siblings ...)
  2023-02-04  7:51 ` Greg Kroah-Hartman
@ 2023-02-06 18:17 ` Elliot Berman
  3 siblings, 0 replies; 7+ messages in thread
From: Elliot Berman @ 2023-02-06 18:17 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mark Brown,
	Greg Kroah-Hartman, Jiri Slaby
  Cc: Visweswara Tanuku, linux-arm-msm, linux-i2c, linux-kernel,
	linux-spi, linux-serial



On 2/3/2023 1:01 PM, Elliot Berman wrote:
> Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> This removes 1 of a few remaining Qualcomm-specific headers into a more
> approciate subdirectory under include/.

Need to s/approciate/appropriate/ (Thanks Mukesh!)

> 
> Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>
> ---
>   drivers/i2c/busses/i2c-qcom-geni.c                   | 2 +-
>   drivers/soc/qcom/qcom-geni-se.c                      | 2 +-
>   drivers/spi/spi-geni-qcom.c                          | 2 +-
>   drivers/tty/serial/qcom_geni_serial.c                | 2 +-
>   include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} | 0
>   5 files changed, 4 insertions(+), 4 deletions(-)
>   rename include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} (100%)
> 
> diff --git a/drivers/i2c/busses/i2c-qcom-geni.c b/drivers/i2c/busses/i2c-qcom-geni.c
> index fd70794bfcee..80d586b0be7a 100644
> --- a/drivers/i2c/busses/i2c-qcom-geni.c
> +++ b/drivers/i2c/busses/i2c-qcom-geni.c
> @@ -14,7 +14,7 @@
>   #include <linux/of.h>
>   #include <linux/platform_device.h>
>   #include <linux/pm_runtime.h>
> -#include <linux/qcom-geni-se.h>
> +#include <linux/soc/qcom/geni-se.h>
>   #include <linux/spinlock.h>
>   
>   #define SE_I2C_TX_TRANS_LEN		0x26c
> diff --git a/drivers/soc/qcom/qcom-geni-se.c b/drivers/soc/qcom/qcom-geni-se.c
> index f0475b93ca73..795a2e1d59b3 100644
> --- a/drivers/soc/qcom/qcom-geni-se.c
> +++ b/drivers/soc/qcom/qcom-geni-se.c
> @@ -14,7 +14,7 @@
>   #include <linux/of_platform.h>
>   #include <linux/pinctrl/consumer.h>
>   #include <linux/platform_device.h>
> -#include <linux/qcom-geni-se.h>
> +#include <linux/soc/qcom/geni-se.h>
>   
>   /**
>    * DOC: Overview
> diff --git a/drivers/spi/spi-geni-qcom.c b/drivers/spi/spi-geni-qcom.c
> index 4e83cc5b445d..e05e40a49294 100644
> --- a/drivers/spi/spi-geni-qcom.c
> +++ b/drivers/spi/spi-geni-qcom.c
> @@ -12,7 +12,7 @@
>   #include <linux/platform_device.h>
>   #include <linux/pm_opp.h>
>   #include <linux/pm_runtime.h>
> -#include <linux/qcom-geni-se.h>
> +#include <linux/soc/qcom/geni-se.h>
>   #include <linux/spi/spi.h>
>   #include <linux/spinlock.h>
>   
> diff --git a/drivers/tty/serial/qcom_geni_serial.c b/drivers/tty/serial/qcom_geni_serial.c
> index b487823f0e61..52f3a0184577 100644
> --- a/drivers/tty/serial/qcom_geni_serial.c
> +++ b/drivers/tty/serial/qcom_geni_serial.c
> @@ -16,7 +16,7 @@
>   #include <linux/platform_device.h>
>   #include <linux/pm_runtime.h>
>   #include <linux/pm_wakeirq.h>
> -#include <linux/qcom-geni-se.h>
> +#include <linux/soc/qcom/geni-se.h>
>   #include <linux/serial.h>
>   #include <linux/serial_core.h>
>   #include <linux/slab.h>
> diff --git a/include/linux/qcom-geni-se.h b/include/linux/soc/qcom/geni-se.h
> similarity index 100%
> rename from include/linux/qcom-geni-se.h
> rename to include/linux/soc/qcom/geni-se.h
> 
> base-commit: 3866989ec2c319341e2cf69ec6116269b634a271

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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-04  7:51 ` Greg Kroah-Hartman
@ 2023-02-09  3:14   ` Bjorn Andersson
  2023-02-09 12:27     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 7+ messages in thread
From: Bjorn Andersson @ 2023-02-09  3:14 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Elliot Berman, Andy Gross, Konrad Dybcio, Mark Brown, Jiri Slaby,
	Visweswara Tanuku, linux-arm-msm, linux-i2c, linux-kernel,
	linux-spi, linux-serial

On Sat, Feb 04, 2023 at 08:51:59AM +0100, Greg Kroah-Hartman wrote:
> On Fri, Feb 03, 2023 at 01:01:32PM -0800, Elliot Berman wrote:
> > Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> > This removes 1 of a few remaining Qualcomm-specific headers into a more
> > approciate subdirectory under include/.
> > 
> > Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>
> > ---
> >  drivers/i2c/busses/i2c-qcom-geni.c                   | 2 +-
> >  drivers/soc/qcom/qcom-geni-se.c                      | 2 +-
> >  drivers/spi/spi-geni-qcom.c                          | 2 +-
> >  drivers/tty/serial/qcom_geni_serial.c                | 2 +-
> >  include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} | 0
> >  5 files changed, 4 insertions(+), 4 deletions(-)
> >  rename include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} (100%)
> 
> Who do you want to take this patch?  Through what tree?  I can take it
> through the tty tree if no one objects, otherwise if someone else is:
> 
> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

I'm happy with that, please go ahead Greg.

Acked-by: Bjorn Andersson <andersson@kernel.org>

Regards,
Bjorn

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

* Re: [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h
  2023-02-09  3:14   ` Bjorn Andersson
@ 2023-02-09 12:27     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 7+ messages in thread
From: Greg Kroah-Hartman @ 2023-02-09 12:27 UTC (permalink / raw)
  To: Bjorn Andersson
  Cc: Elliot Berman, Andy Gross, Konrad Dybcio, Mark Brown, Jiri Slaby,
	Visweswara Tanuku, linux-arm-msm, linux-i2c, linux-kernel,
	linux-spi, linux-serial

On Wed, Feb 08, 2023 at 07:14:40PM -0800, Bjorn Andersson wrote:
> On Sat, Feb 04, 2023 at 08:51:59AM +0100, Greg Kroah-Hartman wrote:
> > On Fri, Feb 03, 2023 at 01:01:32PM -0800, Elliot Berman wrote:
> > > Move include/linux/qcom-geni-se.h to include/linux/soc/qcom/geni-se.h.
> > > This removes 1 of a few remaining Qualcomm-specific headers into a more
> > > approciate subdirectory under include/.
> > > 
> > > Signed-off-by: Elliot Berman <quic_eberman@quicinc.com>
> > > ---
> > >  drivers/i2c/busses/i2c-qcom-geni.c                   | 2 +-
> > >  drivers/soc/qcom/qcom-geni-se.c                      | 2 +-
> > >  drivers/spi/spi-geni-qcom.c                          | 2 +-
> > >  drivers/tty/serial/qcom_geni_serial.c                | 2 +-
> > >  include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} | 0
> > >  5 files changed, 4 insertions(+), 4 deletions(-)
> > >  rename include/linux/{qcom-geni-se.h => soc/qcom/geni-se.h} (100%)
> > 
> > Who do you want to take this patch?  Through what tree?  I can take it
> > through the tty tree if no one objects, otherwise if someone else is:
> > 
> > Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> 
> I'm happy with that, please go ahead Greg.
> 
> Acked-by: Bjorn Andersson <andersson@kernel.org>

Great, now queued up, thanks.

greg k-h

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

end of thread, other threads:[~2023-02-09 12:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-03 21:01 [PATCH] soc: qcom: geni-se: Move qcom-geni-se.h to linux/soc/qcom/geni-se.h Elliot Berman
2023-02-03 21:56 ` Guru Das Srinagesh
2023-02-04  7:04 ` Wolfram Sang
2023-02-04  7:51 ` Greg Kroah-Hartman
2023-02-09  3:14   ` Bjorn Andersson
2023-02-09 12:27     ` Greg Kroah-Hartman
2023-02-06 18:17 ` Elliot Berman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.