All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86
@ 2019-02-18 19:34 Andy Shevchenko
  2019-02-18 22:00 ` Rafael J. Wysocki
  2019-02-22  8:14 ` Stephen Boyd
  0 siblings, 2 replies; 5+ messages in thread
From: Andy Shevchenko @ 2019-02-18 19:34 UTC (permalink / raw)
  To: Rafael J. Wysocki, linux-acpi, Michael Turquette, Stephen Boyd,
	linux-clk, Hans de Goede
  Cc: Andy Shevchenko

clk-lpss.h is solely x86 related header. Move it to correct folder.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/acpi/acpi_lpss.c                         | 2 +-
 drivers/clk/x86/clk-lpt.c                        | 2 +-
 include/linux/platform_data/{ => x86}/clk-lpss.h | 0
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename include/linux/platform_data/{ => x86}/clk-lpss.h (100%)

diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c
index 5f94c35d165f..1e2a10a06b9d 100644
--- a/drivers/acpi/acpi_lpss.c
+++ b/drivers/acpi/acpi_lpss.c
@@ -18,7 +18,7 @@
 #include <linux/mutex.h>
 #include <linux/pci.h>
 #include <linux/platform_device.h>
-#include <linux/platform_data/clk-lpss.h>
+#include <linux/platform_data/x86/clk-lpss.h>
 #include <linux/platform_data/x86/pmc_atom.h>
 #include <linux/pm_domain.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c
index 6b40eb89ae19..68bd3abaef2c 100644
--- a/drivers/clk/x86/clk-lpt.c
+++ b/drivers/clk/x86/clk-lpt.c
@@ -13,7 +13,7 @@
 #include <linux/clk-provider.h>
 #include <linux/err.h>
 #include <linux/module.h>
-#include <linux/platform_data/clk-lpss.h>
+#include <linux/platform_data/x86/clk-lpss.h>
 #include <linux/platform_device.h>
 
 static int lpt_clk_probe(struct platform_device *pdev)
diff --git a/include/linux/platform_data/clk-lpss.h b/include/linux/platform_data/x86/clk-lpss.h
similarity index 100%
rename from include/linux/platform_data/clk-lpss.h
rename to include/linux/platform_data/x86/clk-lpss.h
-- 
2.20.1


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

* Re: [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86
  2019-02-18 19:34 [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86 Andy Shevchenko
@ 2019-02-18 22:00 ` Rafael J. Wysocki
  2019-02-18 22:46   ` Andy Shevchenko
  2019-02-22  8:14 ` Stephen Boyd
  1 sibling, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2019-02-18 22:00 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: linux-acpi, Michael Turquette, Stephen Boyd, linux-clk, Hans de Goede

On Monday, February 18, 2019 8:34:15 PM CET Andy Shevchenko wrote:
> clk-lpss.h is solely x86 related header. Move it to correct folder.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

in case you want to take this through the platform-x86 tree.

> ---
>  drivers/acpi/acpi_lpss.c                         | 2 +-
>  drivers/clk/x86/clk-lpt.c                        | 2 +-
>  include/linux/platform_data/{ => x86}/clk-lpss.h | 0
>  3 files changed, 2 insertions(+), 2 deletions(-)
>  rename include/linux/platform_data/{ => x86}/clk-lpss.h (100%)
> 
> diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c
> index 5f94c35d165f..1e2a10a06b9d 100644
> --- a/drivers/acpi/acpi_lpss.c
> +++ b/drivers/acpi/acpi_lpss.c
> @@ -18,7 +18,7 @@
>  #include <linux/mutex.h>
>  #include <linux/pci.h>
>  #include <linux/platform_device.h>
> -#include <linux/platform_data/clk-lpss.h>
> +#include <linux/platform_data/x86/clk-lpss.h>
>  #include <linux/platform_data/x86/pmc_atom.h>
>  #include <linux/pm_domain.h>
>  #include <linux/pm_runtime.h>
> diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c
> index 6b40eb89ae19..68bd3abaef2c 100644
> --- a/drivers/clk/x86/clk-lpt.c
> +++ b/drivers/clk/x86/clk-lpt.c
> @@ -13,7 +13,7 @@
>  #include <linux/clk-provider.h>
>  #include <linux/err.h>
>  #include <linux/module.h>
> -#include <linux/platform_data/clk-lpss.h>
> +#include <linux/platform_data/x86/clk-lpss.h>
>  #include <linux/platform_device.h>
>  
>  static int lpt_clk_probe(struct platform_device *pdev)
> diff --git a/include/linux/platform_data/clk-lpss.h b/include/linux/platform_data/x86/clk-lpss.h
> similarity index 100%
> rename from include/linux/platform_data/clk-lpss.h
> rename to include/linux/platform_data/x86/clk-lpss.h
> 



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

* Re: [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86
  2019-02-18 22:00 ` Rafael J. Wysocki
@ 2019-02-18 22:46   ` Andy Shevchenko
  2019-02-20 19:38     ` Stephen Boyd
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2019-02-18 22:46 UTC (permalink / raw)
  To: Rafael J. Wysocki
  Cc: linux-acpi, Michael Turquette, Stephen Boyd, linux-clk, Hans de Goede

On Mon, Feb 18, 2019 at 11:00:59PM +0100, Rafael J. Wysocki wrote:
> On Monday, February 18, 2019 8:34:15 PM CET Andy Shevchenko wrote:
> > clk-lpss.h is solely x86 related header. Move it to correct folder.
> > 
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> 
> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> 
> in case you want to take this through the platform-x86 tree.

I guess clock tree is the best for this.

> 
> > ---
> >  drivers/acpi/acpi_lpss.c                         | 2 +-
> >  drivers/clk/x86/clk-lpt.c                        | 2 +-
> >  include/linux/platform_data/{ => x86}/clk-lpss.h | 0
> >  3 files changed, 2 insertions(+), 2 deletions(-)
> >  rename include/linux/platform_data/{ => x86}/clk-lpss.h (100%)
> > 
> > diff --git a/drivers/acpi/acpi_lpss.c b/drivers/acpi/acpi_lpss.c
> > index 5f94c35d165f..1e2a10a06b9d 100644
> > --- a/drivers/acpi/acpi_lpss.c
> > +++ b/drivers/acpi/acpi_lpss.c
> > @@ -18,7 +18,7 @@
> >  #include <linux/mutex.h>
> >  #include <linux/pci.h>
> >  #include <linux/platform_device.h>
> > -#include <linux/platform_data/clk-lpss.h>
> > +#include <linux/platform_data/x86/clk-lpss.h>
> >  #include <linux/platform_data/x86/pmc_atom.h>
> >  #include <linux/pm_domain.h>
> >  #include <linux/pm_runtime.h>
> > diff --git a/drivers/clk/x86/clk-lpt.c b/drivers/clk/x86/clk-lpt.c
> > index 6b40eb89ae19..68bd3abaef2c 100644
> > --- a/drivers/clk/x86/clk-lpt.c
> > +++ b/drivers/clk/x86/clk-lpt.c
> > @@ -13,7 +13,7 @@
> >  #include <linux/clk-provider.h>
> >  #include <linux/err.h>
> >  #include <linux/module.h>
> > -#include <linux/platform_data/clk-lpss.h>
> > +#include <linux/platform_data/x86/clk-lpss.h>
> >  #include <linux/platform_device.h>
> >  
> >  static int lpt_clk_probe(struct platform_device *pdev)
> > diff --git a/include/linux/platform_data/clk-lpss.h b/include/linux/platform_data/x86/clk-lpss.h
> > similarity index 100%
> > rename from include/linux/platform_data/clk-lpss.h
> > rename to include/linux/platform_data/x86/clk-lpss.h
> > 
> 
> 

-- 
With Best Regards,
Andy Shevchenko



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

* Re: [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86
  2019-02-18 22:46   ` Andy Shevchenko
@ 2019-02-20 19:38     ` Stephen Boyd
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2019-02-20 19:38 UTC (permalink / raw)
  To: Rafael J. Wysocki, Andy Shevchenko
  Cc: linux-acpi, Michael Turquette, linux-clk, Hans de Goede

Quoting Andy Shevchenko (2019-02-18 14:46:43)
> On Mon, Feb 18, 2019 at 11:00:59PM +0100, Rafael J. Wysocki wrote:
> > On Monday, February 18, 2019 8:34:15 PM CET Andy Shevchenko wrote:
> > > clk-lpss.h is solely x86 related header. Move it to correct folder.
> > > 
> > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > 
> > Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> > 
> > in case you want to take this through the platform-x86 tree.
> 
> I guess clock tree is the best for this.

Ok I can pick it up.


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

* Re: [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86
  2019-02-18 19:34 [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86 Andy Shevchenko
  2019-02-18 22:00 ` Rafael J. Wysocki
@ 2019-02-22  8:14 ` Stephen Boyd
  1 sibling, 0 replies; 5+ messages in thread
From: Stephen Boyd @ 2019-02-22  8:14 UTC (permalink / raw)
  To: Rafael J. Wysocki, Andy Shevchenko, Hans de Goede,
	Michael Turquette, linux-acpi, linux-clk
  Cc: Andy Shevchenko

Quoting Andy Shevchenko (2019-02-18 11:34:15)
> clk-lpss.h is solely x86 related header. Move it to correct folder.
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---

Applied to clk-next


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

end of thread, other threads:[~2019-02-22  8:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-18 19:34 [PATCH v1] clk: x86: Move clk-lpss.h to platform_data/x86 Andy Shevchenko
2019-02-18 22:00 ` Rafael J. Wysocki
2019-02-18 22:46   ` Andy Shevchenko
2019-02-20 19:38     ` Stephen Boyd
2019-02-22  8:14 ` Stephen Boyd

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.