linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs
@ 2018-10-04  7:52 Amit Kucheria
  2018-10-26  8:51 ` Amit Kucheria
  0 siblings, 1 reply; 5+ messages in thread
From: Amit Kucheria @ 2018-10-04  7:52 UTC (permalink / raw)
  To: linux-kernel; +Cc: mka, rui.zhang, edubezval, Daniel Lezcano, linux-pm

Move the various drivers for Intel platforms into their own subdir. Also
consolidate Qualcomm drivers into the qcom subdir.

This cleans up the directory making it easier to find things.

There is no great time to send patches that move files around, but I'm told
that towards the end of the merge window is nicer. So here's an attempt to
sneak it into 4.20 after everything else and hoping that these files won't
change after 4.19-rc6. :-)

This was generated and compile-tested against 4.19-rc6. If you would like
me to try again a bit later, I'm happy to do so.

Changes since v1:
- Removed a stray character that snuck into the Makefile
- Added Acks
- Rebased to v4.19-rc6

Amit Kucheria (2):
  drivers: thermal: Move various drivers for intel platforms into a
    subdir
  drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom subdir

 drivers/thermal/Kconfig                       | 94 +------------------
 drivers/thermal/Makefile                      | 10 +-
 drivers/thermal/intel/Kconfig                 | 77 +++++++++++++++
 drivers/thermal/intel/Makefile                | 12 +++
 .../{ => intel}/int340x_thermal/Kconfig       |  0
 .../{ => intel}/int340x_thermal/Makefile      |  0
 .../int340x_thermal/acpi_thermal_rel.c        |  0
 .../int340x_thermal/acpi_thermal_rel.h        |  0
 .../int340x_thermal/int3400_thermal.c         |  0
 .../int340x_thermal/int3402_thermal.c         |  0
 .../int340x_thermal/int3403_thermal.c         |  0
 .../int340x_thermal/int3406_thermal.c         |  0
 .../int340x_thermal/int340x_thermal_zone.c    |  0
 .../int340x_thermal/int340x_thermal_zone.h    |  0
 .../processor_thermal_device.c                |  0
 .../{ => intel}/intel_bxt_pmic_thermal.c      |  0
 .../thermal/{ => intel}/intel_pch_thermal.c   |  0
 .../thermal/{ => intel}/intel_powerclamp.c    |  0
 .../{ => intel}/intel_quark_dts_thermal.c     |  0
 .../thermal/{ => intel}/intel_soc_dts_iosf.c  |  0
 .../thermal/{ => intel}/intel_soc_dts_iosf.h  |  0
 .../{ => intel}/intel_soc_dts_thermal.c       |  0
 .../{ => intel}/x86_pkg_temp_thermal.c        |  0
 drivers/thermal/qcom/Kconfig                  | 11 +++
 drivers/thermal/qcom/Makefile                 |  1 +
 .../thermal/{ => qcom}/qcom-spmi-temp-alarm.c |  0
 26 files changed, 107 insertions(+), 98 deletions(-)
 create mode 100644 drivers/thermal/intel/Kconfig
 create mode 100644 drivers/thermal/intel/Makefile
 rename drivers/thermal/{ => intel}/int340x_thermal/Kconfig (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/Makefile (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.h (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int3400_thermal.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int3402_thermal.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int3403_thermal.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int3406_thermal.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.c (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.h (100%)
 rename drivers/thermal/{ => intel}/int340x_thermal/processor_thermal_device.c (100%)
 rename drivers/thermal/{ => intel}/intel_bxt_pmic_thermal.c (100%)
 rename drivers/thermal/{ => intel}/intel_pch_thermal.c (100%)
 rename drivers/thermal/{ => intel}/intel_powerclamp.c (100%)
 rename drivers/thermal/{ => intel}/intel_quark_dts_thermal.c (100%)
 rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.c (100%)
 rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.h (100%)
 rename drivers/thermal/{ => intel}/intel_soc_dts_thermal.c (100%)
 rename drivers/thermal/{ => intel}/x86_pkg_temp_thermal.c (100%)
 rename drivers/thermal/{ => qcom}/qcom-spmi-temp-alarm.c (100%)

-- 
2.17.1

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

* Re: [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs
  2018-10-04  7:52 [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs Amit Kucheria
@ 2018-10-26  8:51 ` Amit Kucheria
  2018-11-22 18:47   ` Amit Kucheria
  0 siblings, 1 reply; 5+ messages in thread
From: Amit Kucheria @ 2018-10-26  8:51 UTC (permalink / raw)
  To: LKML
  Cc: Matthias Kaehlcke, Zhang Rui, Eduardo Valentin, Daniel Lezcano,
	Linux PM list

Hi Rui,

On Thu, Oct 4, 2018 at 1:22 PM Amit Kucheria <amit.kucheria@linaro.org> wrote:
>
> Move the various drivers for Intel platforms into their own subdir. Also
> consolidate Qualcomm drivers into the qcom subdir.
>
> This cleans up the directory making it easier to find things.

Any comments on these changes?

> There is no great time to send patches that move files around, but I'm told
> that towards the end of the merge window is nicer. So here's an attempt to
> sneak it into 4.20 after everything else and hoping that these files won't
> change after 4.19-rc6. :-)
>
> This was generated and compile-tested against 4.19-rc6. If you would like
> me to try again a bit later, I'm happy to do so.
>
> Changes since v1:
> - Removed a stray character that snuck into the Makefile
> - Added Acks
> - Rebased to v4.19-rc6
>
> Amit Kucheria (2):
>   drivers: thermal: Move various drivers for intel platforms into a
>     subdir
>   drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom subdir
>
>  drivers/thermal/Kconfig                       | 94 +------------------
>  drivers/thermal/Makefile                      | 10 +-
>  drivers/thermal/intel/Kconfig                 | 77 +++++++++++++++
>  drivers/thermal/intel/Makefile                | 12 +++
>  .../{ => intel}/int340x_thermal/Kconfig       |  0
>  .../{ => intel}/int340x_thermal/Makefile      |  0
>  .../int340x_thermal/acpi_thermal_rel.c        |  0
>  .../int340x_thermal/acpi_thermal_rel.h        |  0
>  .../int340x_thermal/int3400_thermal.c         |  0
>  .../int340x_thermal/int3402_thermal.c         |  0
>  .../int340x_thermal/int3403_thermal.c         |  0
>  .../int340x_thermal/int3406_thermal.c         |  0
>  .../int340x_thermal/int340x_thermal_zone.c    |  0
>  .../int340x_thermal/int340x_thermal_zone.h    |  0
>  .../processor_thermal_device.c                |  0
>  .../{ => intel}/intel_bxt_pmic_thermal.c      |  0
>  .../thermal/{ => intel}/intel_pch_thermal.c   |  0
>  .../thermal/{ => intel}/intel_powerclamp.c    |  0
>  .../{ => intel}/intel_quark_dts_thermal.c     |  0
>  .../thermal/{ => intel}/intel_soc_dts_iosf.c  |  0
>  .../thermal/{ => intel}/intel_soc_dts_iosf.h  |  0
>  .../{ => intel}/intel_soc_dts_thermal.c       |  0
>  .../{ => intel}/x86_pkg_temp_thermal.c        |  0
>  drivers/thermal/qcom/Kconfig                  | 11 +++
>  drivers/thermal/qcom/Makefile                 |  1 +
>  .../thermal/{ => qcom}/qcom-spmi-temp-alarm.c |  0
>  26 files changed, 107 insertions(+), 98 deletions(-)
>  create mode 100644 drivers/thermal/intel/Kconfig
>  create mode 100644 drivers/thermal/intel/Makefile
>  rename drivers/thermal/{ => intel}/int340x_thermal/Kconfig (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/Makefile (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.h (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int3400_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int3402_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int3403_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int3406_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.c (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.h (100%)
>  rename drivers/thermal/{ => intel}/int340x_thermal/processor_thermal_device.c (100%)
>  rename drivers/thermal/{ => intel}/intel_bxt_pmic_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/intel_pch_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/intel_powerclamp.c (100%)
>  rename drivers/thermal/{ => intel}/intel_quark_dts_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.c (100%)
>  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.h (100%)
>  rename drivers/thermal/{ => intel}/intel_soc_dts_thermal.c (100%)
>  rename drivers/thermal/{ => intel}/x86_pkg_temp_thermal.c (100%)
>  rename drivers/thermal/{ => qcom}/qcom-spmi-temp-alarm.c (100%)
>
> --
> 2.17.1
>

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

* Re: [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs
  2018-10-26  8:51 ` Amit Kucheria
@ 2018-11-22 18:47   ` Amit Kucheria
  2018-11-26  7:56     ` Zhang Rui
  0 siblings, 1 reply; 5+ messages in thread
From: Amit Kucheria @ 2018-11-22 18:47 UTC (permalink / raw)
  To: LKML
  Cc: Matthias Kaehlcke, Zhang Rui, Eduardo Valentin, Daniel Lezcano,
	Linux PM list

On Fri, Oct 26, 2018 at 2:21 PM Amit Kucheria <amit.kucheria@linaro.org> wrote:
>
> Hi Rui,
>
> On Thu, Oct 4, 2018 at 1:22 PM Amit Kucheria <amit.kucheria@linaro.org> wrote:
> >
> > Move the various drivers for Intel platforms into their own subdir. Also
> > consolidate Qualcomm drivers into the qcom subdir.
> >
> > This cleans up the directory making it easier to find things.
>
> Any comments on these changes?

Rui? Eduardo?

> > There is no great time to send patches that move files around, but I'm told
> > that towards the end of the merge window is nicer. So here's an attempt to
> > sneak it into 4.20 after everything else and hoping that these files won't
> > change after 4.19-rc6. :-)
> >
> > This was generated and compile-tested against 4.19-rc6. If you would like
> > me to try again a bit later, I'm happy to do so.
> >
> > Changes since v1:
> > - Removed a stray character that snuck into the Makefile
> > - Added Acks
> > - Rebased to v4.19-rc6
> >
> > Amit Kucheria (2):
> >   drivers: thermal: Move various drivers for intel platforms into a
> >     subdir
> >   drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom subdir
> >
> >  drivers/thermal/Kconfig                       | 94 +------------------
> >  drivers/thermal/Makefile                      | 10 +-
> >  drivers/thermal/intel/Kconfig                 | 77 +++++++++++++++
> >  drivers/thermal/intel/Makefile                | 12 +++
> >  .../{ => intel}/int340x_thermal/Kconfig       |  0
> >  .../{ => intel}/int340x_thermal/Makefile      |  0
> >  .../int340x_thermal/acpi_thermal_rel.c        |  0
> >  .../int340x_thermal/acpi_thermal_rel.h        |  0
> >  .../int340x_thermal/int3400_thermal.c         |  0
> >  .../int340x_thermal/int3402_thermal.c         |  0
> >  .../int340x_thermal/int3403_thermal.c         |  0
> >  .../int340x_thermal/int3406_thermal.c         |  0
> >  .../int340x_thermal/int340x_thermal_zone.c    |  0
> >  .../int340x_thermal/int340x_thermal_zone.h    |  0
> >  .../processor_thermal_device.c                |  0
> >  .../{ => intel}/intel_bxt_pmic_thermal.c      |  0
> >  .../thermal/{ => intel}/intel_pch_thermal.c   |  0
> >  .../thermal/{ => intel}/intel_powerclamp.c    |  0
> >  .../{ => intel}/intel_quark_dts_thermal.c     |  0
> >  .../thermal/{ => intel}/intel_soc_dts_iosf.c  |  0
> >  .../thermal/{ => intel}/intel_soc_dts_iosf.h  |  0
> >  .../{ => intel}/intel_soc_dts_thermal.c       |  0
> >  .../{ => intel}/x86_pkg_temp_thermal.c        |  0
> >  drivers/thermal/qcom/Kconfig                  | 11 +++
> >  drivers/thermal/qcom/Makefile                 |  1 +
> >  .../thermal/{ => qcom}/qcom-spmi-temp-alarm.c |  0
> >  26 files changed, 107 insertions(+), 98 deletions(-)
> >  create mode 100644 drivers/thermal/intel/Kconfig
> >  create mode 100644 drivers/thermal/intel/Makefile
> >  rename drivers/thermal/{ => intel}/int340x_thermal/Kconfig (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/Makefile (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/acpi_thermal_rel.h (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int3400_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int3402_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int3403_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int3406_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.c (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/int340x_thermal_zone.h (100%)
> >  rename drivers/thermal/{ => intel}/int340x_thermal/processor_thermal_device.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_bxt_pmic_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_pch_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_powerclamp.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_quark_dts_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.c (100%)
> >  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.h (100%)
> >  rename drivers/thermal/{ => intel}/intel_soc_dts_thermal.c (100%)
> >  rename drivers/thermal/{ => intel}/x86_pkg_temp_thermal.c (100%)
> >  rename drivers/thermal/{ => qcom}/qcom-spmi-temp-alarm.c (100%)
> >
> > --
> > 2.17.1
> >

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

* Re: [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs
  2018-11-22 18:47   ` Amit Kucheria
@ 2018-11-26  7:56     ` Zhang Rui
  2018-12-05  6:22       ` Amit Kucheria
  0 siblings, 1 reply; 5+ messages in thread
From: Zhang Rui @ 2018-11-26  7:56 UTC (permalink / raw)
  To: Amit Kucheria, LKML
  Cc: Matthias Kaehlcke, Eduardo Valentin, Daniel Lezcano,
	Linux PM list

On 五, 2018-11-23 at 00:17 +0530, Amit Kucheria wrote:
> On Fri, Oct 26, 2018 at 2:21 PM Amit Kucheria <amit.kucheria@linaro.o
> rg> wrote:
> > 
> > 
> > Hi Rui,
> > 
> > On Thu, Oct 4, 2018 at 1:22 PM Amit Kucheria <amit.kucheria@linaro.
> > org> wrote:
> > > 
> > > 
> > > Move the various drivers for Intel platforms into their own
> > > subdir. Also
> > > consolidate Qualcomm drivers into the qcom subdir.
> > > 
> > > This cleans up the directory making it easier to find things.
> > Any comments on these changes?
> Rui? Eduardo?
> 
the patches were not sent to linux-pm mailing list, and that's why I
overlooked this patch set in patchwork.

thanks,
rui
> > 
> > > 
> > > There is no great time to send patches that move files around,
> > > but I'm told
> > > that towards the end of the merge window is nicer. So here's an
> > > attempt to
> > > sneak it into 4.20 after everything else and hoping that these
> > > files won't
> > > change after 4.19-rc6. :-)
> > > 
> > > This was generated and compile-tested against 4.19-rc6. If you
> > > would like
> > > me to try again a bit later, I'm happy to do so.
> > > 
> > > Changes since v1:
> > > - Removed a stray character that snuck into the Makefile
> > > - Added Acks
> > > - Rebased to v4.19-rc6
> > > 
> > > Amit Kucheria (2):
> > >   drivers: thermal: Move various drivers for intel platforms into
> > > a
> > >     subdir
> > >   drivers: thermal: Move QCOM_SPMI_TEMP_ALARM into the qcom
> > > subdir
> > > 
> > >  drivers/thermal/Kconfig                       | 94 +----------
> > > --------
> > >  drivers/thermal/Makefile                      | 10 +-
> > >  drivers/thermal/intel/Kconfig                 | 77
> > > +++++++++++++++
> > >  drivers/thermal/intel/Makefile                | 12 +++
> > >  .../{ => intel}/int340x_thermal/Kconfig       |  0
> > >  .../{ => intel}/int340x_thermal/Makefile      |  0
> > >  .../int340x_thermal/acpi_thermal_rel.c        |  0
> > >  .../int340x_thermal/acpi_thermal_rel.h        |  0
> > >  .../int340x_thermal/int3400_thermal.c         |  0
> > >  .../int340x_thermal/int3402_thermal.c         |  0
> > >  .../int340x_thermal/int3403_thermal.c         |  0
> > >  .../int340x_thermal/int3406_thermal.c         |  0
> > >  .../int340x_thermal/int340x_thermal_zone.c    |  0
> > >  .../int340x_thermal/int340x_thermal_zone.h    |  0
> > >  .../processor_thermal_device.c                |  0
> > >  .../{ => intel}/intel_bxt_pmic_thermal.c      |  0
> > >  .../thermal/{ => intel}/intel_pch_thermal.c   |  0
> > >  .../thermal/{ => intel}/intel_powerclamp.c    |  0
> > >  .../{ => intel}/intel_quark_dts_thermal.c     |  0
> > >  .../thermal/{ => intel}/intel_soc_dts_iosf.c  |  0
> > >  .../thermal/{ => intel}/intel_soc_dts_iosf.h  |  0
> > >  .../{ => intel}/intel_soc_dts_thermal.c       |  0
> > >  .../{ => intel}/x86_pkg_temp_thermal.c        |  0
> > >  drivers/thermal/qcom/Kconfig                  | 11 +++
> > >  drivers/thermal/qcom/Makefile                 |  1 +
> > >  .../thermal/{ => qcom}/qcom-spmi-temp-alarm.c |  0
> > >  26 files changed, 107 insertions(+), 98 deletions(-)
> > >  create mode 100644 drivers/thermal/intel/Kconfig
> > >  create mode 100644 drivers/thermal/intel/Makefile
> > >  rename drivers/thermal/{ => intel}/int340x_thermal/Kconfig
> > > (100%)
> > >  rename drivers/thermal/{ => intel}/int340x_thermal/Makefile
> > > (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/acpi_thermal_rel.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/acpi_thermal_rel.h (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int3400_thermal.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int3402_thermal.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int3403_thermal.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int3406_thermal.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int340x_thermal_zone.c (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/int340x_thermal_zone.h (100%)
> > >  rename drivers/thermal/{ =>
> > > intel}/int340x_thermal/processor_thermal_device.c (100%)
> > >  rename drivers/thermal/{ => intel}/intel_bxt_pmic_thermal.c
> > > (100%)
> > >  rename drivers/thermal/{ => intel}/intel_pch_thermal.c (100%)
> > >  rename drivers/thermal/{ => intel}/intel_powerclamp.c (100%)
> > >  rename drivers/thermal/{ => intel}/intel_quark_dts_thermal.c
> > > (100%)
> > >  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.c (100%)
> > >  rename drivers/thermal/{ => intel}/intel_soc_dts_iosf.h (100%)
> > >  rename drivers/thermal/{ => intel}/intel_soc_dts_thermal.c
> > > (100%)
> > >  rename drivers/thermal/{ => intel}/x86_pkg_temp_thermal.c (100%)
> > >  rename drivers/thermal/{ => qcom}/qcom-spmi-temp-alarm.c (100%)
> > > 
> > > --
> > > 2.17.1
> > > 

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

* Re: [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs
  2018-11-26  7:56     ` Zhang Rui
@ 2018-12-05  6:22       ` Amit Kucheria
  0 siblings, 0 replies; 5+ messages in thread
From: Amit Kucheria @ 2018-12-05  6:22 UTC (permalink / raw)
  To: Zhang Rui
  Cc: LKML, Matthias Kaehlcke, Eduardo Valentin, Daniel Lezcano,
	Linux PM list

On Mon, Nov 26, 2018 at 1:26 PM Zhang Rui <rui.zhang@intel.com> wrote:
>
> On 五, 2018-11-23 at 00:17 +0530, Amit Kucheria wrote:
> > On Fri, Oct 26, 2018 at 2:21 PM Amit Kucheria <amit.kucheria@linaro.o
> > rg> wrote:
> > >
> > >
> > > Hi Rui,
> > >
> > > On Thu, Oct 4, 2018 at 1:22 PM Amit Kucheria <amit.kucheria@linaro.
> > > org> wrote:
> > > >
> > > >
> > > > Move the various drivers for Intel platforms into their own
> > > > subdir. Also
> > > > consolidate Qualcomm drivers into the qcom subdir.
> > > >
> > > > This cleans up the directory making it easier to find things.
> > > Any comments on these changes?
> > Rui? Eduardo?
> >
> the patches were not sent to linux-pm mailing list, and that's why I
> overlooked this patch set in patchwork.
>
> thanks,
> rui

Hi Rui,

I've sent a new version with linux-pm in cc.

Regards,
Amit

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

end of thread, other threads:[~2018-12-05  6:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-04  7:52 [PATCH v2 0/2] driver: thermal: Move some drivers into subdirs Amit Kucheria
2018-10-26  8:51 ` Amit Kucheria
2018-11-22 18:47   ` Amit Kucheria
2018-11-26  7:56     ` Zhang Rui
2018-12-05  6:22       ` Amit Kucheria

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).