linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Eduardo Valentin <edubezval@gmail.com>
To: amit daniel kachhap <amit.daniel@samsung.com>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Zhang Rui <rui.zhang@intel.com>, Tomasz Figa <t.figa@samsung.com>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Kyungmin Park <kyungmin.park@samsung.com>,
	"linux-samsung-soc@vger.kernel.org"
	<linux-samsung-soc@vger.kernel.org>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 0/8] thermal: exynos: various cleanups
Date: Fri, 29 Aug 2014 15:25:53 -0400	[thread overview]
Message-ID: <20140829192551.GA23645@developer> (raw)
In-Reply-To: <CAC-25o9ajcpusqUzxTXpVKgi6YBy3_9wZNihtm-9hKXn5OFgNw@mail.gmail.com>

On Mon, Sep 01, 2014 at 07:05:27AM -0400, edubezval@gmail.com wrote:
> Amit
> 
> On Mon, Sep 1, 2014 at 6:53 AM, amit daniel kachhap
> <amit.daniel@samsung.com> wrote:
> > On Thu, Aug 28, 2014 at 8:19 PM, Eduardo Valentin <edubezval@gmail.com> wrote:
> >> Amit,
> >>
> >> On Thu, Jul 31, 2014 at 07:10:58PM +0200, Bartlomiej Zolnierkiewicz wrote:
> >>> Hi,
> >>>
> >>> This patch series contains various cleanups for EXYNOS thermal
> >>> driver.  Overall it decreases driver's LOC by 9%.  It is based
> >>> on next-20140731 kernel.  It should not cause any functionality
> >>> changes.
> >>>
> >>
> >> Did you have the time to test this series?
> >
> > Hi Eduardo/Bartlomiej,
> >
> > For the whole series tested on exynos5250 based arndale board.
> > Tested-by: Amit Daniel Kachhap <amit.daniel@samsung.com>
> >
> 
> Thanks! I will pull the series on my tree.


Pulled into my next branch. Thanks.

> 
> 
> > Sorry for the delay as I was busy in some internal work.
> >
> > Thanks,
> > Amit D
> >>
> >>> Changes since v2 (https://lkml.org/lkml/2014/6/17/436):
> >>> - synced patches against next-20140731
> >>> - dropped patch "thermal: exynos: remove dead code for
> >>>   TYPE_TWO_POINT_TRIMMING calibration" (newly added Exynos3250
> >>>   SoC support uses TYPE_TWO_POINT_TRIMMING calibration)
> >>> - updated patch description for patch #2
> >>> - dropped Reviewed-by from Amit from patch #8 (due to changed
> >>>   scope of the patch)
> >>>
> >>> Changes since v1 (https://lkml.org/lkml/2014/5/5/194):
> >>> - synced patches against next-20140617
> >>> - merged patch "thermal: exynos: remove unused defines" into
> >>>   "thermal: exynos: remove unused struct exynos_tmu_registers
> >>>   entries" one (per request from Eduardo)
> >>> - improved patch descriptions for patches #1-5
> >>> - fixed documentation for pdata->gain and pdata->reference_voltage
> >>> - added Reviewed-by from Amit to patches #6, #7 and #10
> >>> - added missing Acked-by from Kyungmin Park
> >>>
> >>> Best regards,
> >>> --
> >>> Bartlomiej Zolnierkiewicz
> >>> Samsung R&D Institute Poland
> >>> Samsung Electronics
> >>>
> >>>
> >>> Bartlomiej Zolnierkiewicz (8):
> >>>   thermal: exynos: remove unused struct exynos_tmu_registers entries
> >>>   thermal: exynos: remove dead code for HW_MODE calibration
> >>>   thermal: exynos: remove redundant pdata checks from
> >>>     exynos_tmu_initialize()
> >>>   thermal: exynos: remove redundant threshold_code checks from
> >>>     exynos_tmu_initialize()
> >>>   thermal: exynos: simplify temp_to_code() and code_to_temp()
> >>>   thermal: exynos: cache non_hw_trigger_levels in pdata
> >>>   thermal: exynos: remove redundant pdata checks from
> >>>     exynos_tmu_control()
> >>>   thermal: exynos: remove identical values from exynos*_tmu_registers
> >>>     structures
> >>>
> >>>  drivers/thermal/samsung/exynos_thermal_common.h |   1 -
> >>>  drivers/thermal/samsung/exynos_tmu.c            | 126 +++++-------------------
> >>>  drivers/thermal/samsung/exynos_tmu.h            |  74 +-------------
> >>>  drivers/thermal/samsung/exynos_tmu_data.c       |  56 ++---------
> >>>  drivers/thermal/samsung/exynos_tmu_data.h       |  31 +-----
> >>>  5 files changed, 35 insertions(+), 253 deletions(-)
> >>>
> >>> --
> >>> 1.8.2.3
> >>>
> >>> --
> >>> To unsubscribe from this list: send the line "unsubscribe linux-pm" in
> >>> the body of a message to majordomo@vger.kernel.org
> >>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> >> --
> >> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> >> the body of a message to majordomo@vger.kernel.org
> >> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 
> 
> -- 
> Eduardo Bezerra Valentin

      reply	other threads:[~2014-08-29 19:25 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-31 17:10 [PATCH v3 0/8] thermal: exynos: various cleanups Bartlomiej Zolnierkiewicz
2014-07-31 17:10 ` [PATCH v3 1/8] thermal: exynos: remove unused struct exynos_tmu_registers entries Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 2/8] thermal: exynos: remove dead code for HW_MODE calibration Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 3/8] thermal: exynos: remove redundant pdata checks from exynos_tmu_initialize() Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 4/8] thermal: exynos: remove redundant threshold_code " Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 5/8] thermal: exynos: simplify temp_to_code() and code_to_temp() Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 6/8] thermal: exynos: cache non_hw_trigger_levels in pdata Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 7/8] thermal: exynos: remove redundant pdata checks from exynos_tmu_control() Bartlomiej Zolnierkiewicz
2014-07-31 17:11 ` [PATCH v3 8/8] thermal: exynos: remove identical values from exynos*_tmu_registers structures Bartlomiej Zolnierkiewicz
2014-08-28 14:49 ` [PATCH v3 0/8] thermal: exynos: various cleanups Eduardo Valentin
2014-09-01 10:53   ` amit daniel kachhap
2014-09-01 11:05     ` edubezval
2014-08-29 19:25       ` Eduardo Valentin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140829192551.GA23645@developer \
    --to=edubezval@gmail.com \
    --cc=amit.daniel@samsung.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=rjw@rjwysocki.net \
    --cc=rui.zhang@intel.com \
    --cc=t.figa@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).