From: Wei Ni <wni-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
To: Eduardo Valentin
<edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Rui Zhang <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Linux PM <linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
LKML <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
lm-sensors-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org,
Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>,
Thierry Reding
<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Alexandre Courbot
<gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register
Date: Thu, 10 Mar 2016 16:46:55 +0800 [thread overview]
Message-ID: <56E1347F.8040406@nvidia.com> (raw)
In-Reply-To: <1457559336-17652-13-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On 2016年03月10日 05:35, Eduardo Valentin wrote:
> This changes the driver to use the devm_ version
> of thermal_zone_of_sensor_register and cleans
> up the local points and unregister calls.
>
> Cc: Zhang Rui <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Cc: Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
> Cc: Thierry Reding <thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Cc: Alexandre Courbot <gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> Cc: linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Signed-off-by: Eduardo Valentin <edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
> drivers/thermal/tegra_soctherm.c | 31 +++++++++----------------------
> 1 file changed, 9 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/thermal/tegra_soctherm.c b/drivers/thermal/tegra_soctherm.c
> index 74ea576..0018ccd 100644
> --- a/drivers/thermal/tegra_soctherm.c
> +++ b/drivers/thermal/tegra_soctherm.c
> @@ -168,7 +168,7 @@ struct tegra_soctherm {
> struct clk *clock_soctherm;
> void __iomem *regs;
>
> - struct thermal_zone_device *thermctl_tzs[4];
> +#define ZONE_NUMBER 4
> };
>
> struct tsensor_shared_calibration {
> @@ -342,7 +342,7 @@ static const struct thermctl_zone_desc t124_thermctl_temp_zones[] = {
> static int tegra_soctherm_probe(struct platform_device *pdev)
> {
> struct tegra_soctherm *tegra;
> - struct thermal_zone_device *tz;
> + struct thermal_zone_device *z;
> struct tsensor_shared_calibration shared_calib;
> struct resource *res;
> unsigned int i;
> @@ -408,36 +408,29 @@ static int tegra_soctherm_probe(struct platform_device *pdev)
>
> /* Initialize thermctl sensors */
>
> - for (i = 0; i < ARRAY_SIZE(tegra->thermctl_tzs); ++i) {
> + for (i = 0; i < ZONE_NUMBER; ++i) {
> struct tegra_thermctl_zone *zone =
> devm_kzalloc(&pdev->dev, sizeof(*zone), GFP_KERNEL);
> if (!zone) {
> err = -ENOMEM;
> - goto unregister_tzs;
> + goto disable_clocks;
> }
>
> zone->reg = tegra->regs + t124_thermctl_temp_zones[i].offset;
> zone->shift = t124_thermctl_temp_zones[i].shift;
>
> - tz = thermal_zone_of_sensor_register(&pdev->dev, i, zone,
> - &tegra_of_thermal_ops);
> - if (IS_ERR(tz)) {
> - err = PTR_ERR(tz);
> + z = devm_thermal_zone_of_sensor_register(&pdev->dev, i, zone,
I prefer to still use "tz", it seems this line isn't over 80 characters, or we
can add newline.
> + &tegra_of_thermal_ops);
> + if (IS_ERR(z)) {
> + err = PTR_ERR(z);
> dev_err(&pdev->dev, "failed to register sensor: %d\n",
> err);
> - goto unregister_tzs;
> + goto disable_clocks;
> }
> -
> - tegra->thermctl_tzs[i] = tz;
> }
>
> return 0;
>
> -unregister_tzs:
> - while (i--)
> - thermal_zone_of_sensor_unregister(&pdev->dev,
> - tegra->thermctl_tzs[i]);
> -
> disable_clocks:
> clk_disable_unprepare(tegra->clock_tsensor);
> clk_disable_unprepare(tegra->clock_soctherm);
> @@ -448,12 +441,6 @@ disable_clocks:
> static int tegra_soctherm_remove(struct platform_device *pdev)
> {
> struct tegra_soctherm *tegra = platform_get_drvdata(pdev);
> - unsigned int i;
> -
> - for (i = 0; i < ARRAY_SIZE(tegra->thermctl_tzs); ++i) {
> - thermal_zone_of_sensor_unregister(&pdev->dev,
> - tegra->thermctl_tzs[i]);
> - }
>
> clk_disable_unprepare(tegra->clock_tsensor);
> clk_disable_unprepare(tegra->clock_soctherm);
>
WARNING: multiple messages have this Message-ID (diff)
From: Wei Ni <wni@nvidia.com>
To: Eduardo Valentin
<edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Rui Zhang <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Linux PM <linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
LKML <linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
lm-sensors-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org,
Stephen Warren <swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>,
Thierry Reding
<thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Alexandre Courbot
<gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [lm-sensors] [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_reg
Date: Thu, 10 Mar 2016 08:46:55 +0000 [thread overview]
Message-ID: <56E1347F.8040406@nvidia.com> (raw)
In-Reply-To: <1457559336-17652-13-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
CgpPbiAyMDE25bm0MDPmnIgxMOaXpSAwNTozNSwgRWR1YXJkbyBWYWxlbnRpbiB3cm90ZToKPiBU
aGlzIGNoYW5nZXMgdGhlIGRyaXZlciB0byB1c2UgdGhlIGRldm1fIHZlcnNpb24KPiBvZiB0aGVy
bWFsX3pvbmVfb2Zfc2Vuc29yX3JlZ2lzdGVyIGFuZCBjbGVhbnMKPiB1cCB0aGUgIGxvY2FsIHBv
aW50cyBhbmQgdW5yZWdpc3RlciBjYWxscy4KPiAKPiBDYzogWmhhbmcgUnVpIDxydWkuemhhbmdA
aW50ZWwuY29tPgo+IENjOiBTdGVwaGVuIFdhcnJlbiA8c3dhcnJlbkB3d3dkb3Rvcmcub3JnPgo+
IENjOiBUaGllcnJ5IFJlZGluZyA8dGhpZXJyeS5yZWRpbmdAZ21haWwuY29tPgo+IENjOiBBbGV4
YW5kcmUgQ291cmJvdCA8Z251cm91QGdtYWlsLmNvbT4KPiBDYzogbGludXgtcG1Admdlci5rZXJu
ZWwub3JnCj4gQ2M6IGxpbnV4LXRlZ3JhQHZnZXIua2VybmVsLm9yZwo+IENjOiBsaW51eC1rZXJu
ZWxAdmdlci5rZXJuZWwub3JnCj4gU2lnbmVkLW9mZi1ieTogRWR1YXJkbyBWYWxlbnRpbiA8ZWR1
YmV6dmFsQGdtYWlsLmNvbT4KPiAtLS0KPiAgZHJpdmVycy90aGVybWFsL3RlZ3JhX3NvY3RoZXJt
LmMgfCAzMSArKysrKysrKystLS0tLS0tLS0tLS0tLS0tLS0tLS0tCj4gIDEgZmlsZSBjaGFuZ2Vk
LCA5IGluc2VydGlvbnMoKyksIDIyIGRlbGV0aW9ucygtKQo+IAo+IGRpZmYgLS1naXQgYS9kcml2
ZXJzL3RoZXJtYWwvdGVncmFfc29jdGhlcm0uYyBiL2RyaXZlcnMvdGhlcm1hbC90ZWdyYV9zb2N0
aGVybS5jCj4gaW5kZXggNzRlYTU3Ni4uMDAxOGNjZCAxMDA2NDQKPiAtLS0gYS9kcml2ZXJzL3Ro
ZXJtYWwvdGVncmFfc29jdGhlcm0uYwo+ICsrKyBiL2RyaXZlcnMvdGhlcm1hbC90ZWdyYV9zb2N0
aGVybS5jCj4gQEAgLTE2OCw3ICsxNjgsNyBAQCBzdHJ1Y3QgdGVncmFfc29jdGhlcm0gewo+ICAJ
c3RydWN0IGNsayAqY2xvY2tfc29jdGhlcm07Cj4gIAl2b2lkIF9faW9tZW0gKnJlZ3M7Cj4gIAo+
IC0Jc3RydWN0IHRoZXJtYWxfem9uZV9kZXZpY2UgKnRoZXJtY3RsX3R6c1s0XTsKPiArI2RlZmlu
ZSBaT05FX05VTUJFUgkJNAo+ICB9Owo+ICAKPiAgc3RydWN0IHRzZW5zb3Jfc2hhcmVkX2NhbGli
cmF0aW9uIHsKPiBAQCAtMzQyLDcgKzM0Miw3IEBAIHN0YXRpYyBjb25zdCBzdHJ1Y3QgdGhlcm1j
dGxfem9uZV9kZXNjIHQxMjRfdGhlcm1jdGxfdGVtcF96b25lc1tdID0gewo+ICBzdGF0aWMgaW50
IHRlZ3JhX3NvY3RoZXJtX3Byb2JlKHN0cnVjdCBwbGF0Zm9ybV9kZXZpY2UgKnBkZXYpCj4gIHsK
PiAgCXN0cnVjdCB0ZWdyYV9zb2N0aGVybSAqdGVncmE7Cj4gLQlzdHJ1Y3QgdGhlcm1hbF96b25l
X2RldmljZSAqdHo7Cj4gKwlzdHJ1Y3QgdGhlcm1hbF96b25lX2RldmljZSAqejsKPiAgCXN0cnVj
dCB0c2Vuc29yX3NoYXJlZF9jYWxpYnJhdGlvbiBzaGFyZWRfY2FsaWI7Cj4gIAlzdHJ1Y3QgcmVz
b3VyY2UgKnJlczsKPiAgCXVuc2lnbmVkIGludCBpOwo+IEBAIC00MDgsMzYgKzQwOCwyOSBAQCBz
dGF0aWMgaW50IHRlZ3JhX3NvY3RoZXJtX3Byb2JlKHN0cnVjdCBwbGF0Zm9ybV9kZXZpY2UgKnBk
ZXYpCj4gIAo+ICAJLyogSW5pdGlhbGl6ZSB0aGVybWN0bCBzZW5zb3JzICovCj4gIAo+IC0JZm9y
IChpID0gMDsgaSA8IEFSUkFZX1NJWkUodGVncmEtPnRoZXJtY3RsX3R6cyk7ICsraSkgewo+ICsJ
Zm9yIChpID0gMDsgaSA8IFpPTkVfTlVNQkVSOyArK2kpIHsKPiAgCQlzdHJ1Y3QgdGVncmFfdGhl
cm1jdGxfem9uZSAqem9uZSA9Cj4gIAkJCWRldm1fa3phbGxvYygmcGRldi0+ZGV2LCBzaXplb2Yo
KnpvbmUpLCBHRlBfS0VSTkVMKTsKPiAgCQlpZiAoIXpvbmUpIHsKPiAgCQkJZXJyID0gLUVOT01F
TTsKPiAtCQkJZ290byB1bnJlZ2lzdGVyX3R6czsKPiArCQkJZ290byBkaXNhYmxlX2Nsb2NrczsK
PiAgCQl9Cj4gIAo+ICAJCXpvbmUtPnJlZyA9IHRlZ3JhLT5yZWdzICsgdDEyNF90aGVybWN0bF90
ZW1wX3pvbmVzW2ldLm9mZnNldDsKPiAgCQl6b25lLT5zaGlmdCA9IHQxMjRfdGhlcm1jdGxfdGVt
cF96b25lc1tpXS5zaGlmdDsKPiAgCj4gLQkJdHogPSB0aGVybWFsX3pvbmVfb2Zfc2Vuc29yX3Jl
Z2lzdGVyKCZwZGV2LT5kZXYsIGksIHpvbmUsCj4gLQkJCQkJCSAgICAgJnRlZ3JhX29mX3RoZXJt
YWxfb3BzKTsKPiAtCQlpZiAoSVNfRVJSKHR6KSkgewo+IC0JCQllcnIgPSBQVFJfRVJSKHR6KTsK
PiArCQl6ID0gZGV2bV90aGVybWFsX3pvbmVfb2Zfc2Vuc29yX3JlZ2lzdGVyKCZwZGV2LT5kZXYs
IGksIHpvbmUsCgpJIHByZWZlciB0byBzdGlsbCB1c2UgInR6IiwgaXQgc2VlbXMgdGhpcyBsaW5l
IGlzbid0IG92ZXIgODAgY2hhcmFjdGVycywgb3Igd2UKY2FuIGFkZCBuZXdsaW5lLgoKPiArCQkJ
CQkJCSAmdGVncmFfb2ZfdGhlcm1hbF9vcHMpOwo+ICsJCWlmIChJU19FUlIoeikpIHsKPiArCQkJ
ZXJyID0gUFRSX0VSUih6KTsKPiAgCQkJZGV2X2VycigmcGRldi0+ZGV2LCAiZmFpbGVkIHRvIHJl
Z2lzdGVyIHNlbnNvcjogJWRcbiIsCj4gIAkJCQllcnIpOwo+IC0JCQlnb3RvIHVucmVnaXN0ZXJf
dHpzOwo+ICsJCQlnb3RvIGRpc2FibGVfY2xvY2tzOwo+ICAJCX0KPiAtCj4gLQkJdGVncmEtPnRo
ZXJtY3RsX3R6c1tpXSA9IHR6Owo+ICAJfQo+ICAKPiAgCXJldHVybiAwOwo+ICAKPiAtdW5yZWdp
c3Rlcl90enM6Cj4gLQl3aGlsZSAoaS0tKQo+IC0JCXRoZXJtYWxfem9uZV9vZl9zZW5zb3JfdW5y
ZWdpc3RlcigmcGRldi0+ZGV2LAo+IC0JCQkJCQkgIHRlZ3JhLT50aGVybWN0bF90enNbaV0pOwo+
IC0KPiAgZGlzYWJsZV9jbG9ja3M6Cj4gIAljbGtfZGlzYWJsZV91bnByZXBhcmUodGVncmEtPmNs
b2NrX3RzZW5zb3IpOwo+ICAJY2xrX2Rpc2FibGVfdW5wcmVwYXJlKHRlZ3JhLT5jbG9ja19zb2N0
aGVybSk7Cj4gQEAgLTQ0OCwxMiArNDQxLDYgQEAgZGlzYWJsZV9jbG9ja3M6Cj4gIHN0YXRpYyBp
bnQgdGVncmFfc29jdGhlcm1fcmVtb3ZlKHN0cnVjdCBwbGF0Zm9ybV9kZXZpY2UgKnBkZXYpCj4g
IHsKPiAgCXN0cnVjdCB0ZWdyYV9zb2N0aGVybSAqdGVncmEgPSBwbGF0Zm9ybV9nZXRfZHJ2ZGF0
YShwZGV2KTsKPiAtCXVuc2lnbmVkIGludCBpOwo+IC0KPiAtCWZvciAoaSA9IDA7IGkgPCBBUlJB
WV9TSVpFKHRlZ3JhLT50aGVybWN0bF90enMpOyArK2kpIHsKPiAtCQl0aGVybWFsX3pvbmVfb2Zf
c2Vuc29yX3VucmVnaXN0ZXIoJnBkZXYtPmRldiwKPiAtCQkJCQkJICB0ZWdyYS0+dGhlcm1jdGxf
dHpzW2ldKTsKPiAtCX0KPiAgCj4gIAljbGtfZGlzYWJsZV91bnByZXBhcmUodGVncmEtPmNsb2Nr
X3RzZW5zb3IpOwo+ICAJY2xrX2Rpc2FibGVfdW5wcmVwYXJlKHRlZ3JhLT5jbG9ja19zb2N0aGVy
bSk7Cj4gCgpfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fXwps
bS1zZW5zb3JzIG1haWxpbmcgbGlzdApsbS1zZW5zb3JzQGxtLXNlbnNvcnMub3JnCmh0dHA6Ly9s
aXN0cy5sbS1zZW5zb3JzLm9yZy9tYWlsbWFuL2xpc3RpbmZvL2xtLXNlbnNvcnM
WARNING: multiple messages have this Message-ID (diff)
From: Wei Ni <wni@nvidia.com>
To: Eduardo Valentin <edubezval@gmail.com>, Rui Zhang <rui.zhang@intel.com>
Cc: Linux PM <linux-pm@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>, <lm-sensors@lm-sensors.org>,
Stephen Warren <swarren@wwwdotorg.org>,
"Thierry Reding" <thierry.reding@gmail.com>,
Alexandre Courbot <gnurou@gmail.com>,
<linux-tegra@vger.kernel.org>
Subject: Re: [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register
Date: Thu, 10 Mar 2016 16:46:55 +0800 [thread overview]
Message-ID: <56E1347F.8040406@nvidia.com> (raw)
In-Reply-To: <1457559336-17652-13-git-send-email-edubezval@gmail.com>
On 2016年03月10日 05:35, Eduardo Valentin wrote:
> This changes the driver to use the devm_ version
> of thermal_zone_of_sensor_register and cleans
> up the local points and unregister calls.
>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Stephen Warren <swarren@wwwdotorg.org>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Alexandre Courbot <gnurou@gmail.com>
> Cc: linux-pm@vger.kernel.org
> Cc: linux-tegra@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
> ---
> drivers/thermal/tegra_soctherm.c | 31 +++++++++----------------------
> 1 file changed, 9 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/thermal/tegra_soctherm.c b/drivers/thermal/tegra_soctherm.c
> index 74ea576..0018ccd 100644
> --- a/drivers/thermal/tegra_soctherm.c
> +++ b/drivers/thermal/tegra_soctherm.c
> @@ -168,7 +168,7 @@ struct tegra_soctherm {
> struct clk *clock_soctherm;
> void __iomem *regs;
>
> - struct thermal_zone_device *thermctl_tzs[4];
> +#define ZONE_NUMBER 4
> };
>
> struct tsensor_shared_calibration {
> @@ -342,7 +342,7 @@ static const struct thermctl_zone_desc t124_thermctl_temp_zones[] = {
> static int tegra_soctherm_probe(struct platform_device *pdev)
> {
> struct tegra_soctherm *tegra;
> - struct thermal_zone_device *tz;
> + struct thermal_zone_device *z;
> struct tsensor_shared_calibration shared_calib;
> struct resource *res;
> unsigned int i;
> @@ -408,36 +408,29 @@ static int tegra_soctherm_probe(struct platform_device *pdev)
>
> /* Initialize thermctl sensors */
>
> - for (i = 0; i < ARRAY_SIZE(tegra->thermctl_tzs); ++i) {
> + for (i = 0; i < ZONE_NUMBER; ++i) {
> struct tegra_thermctl_zone *zone =
> devm_kzalloc(&pdev->dev, sizeof(*zone), GFP_KERNEL);
> if (!zone) {
> err = -ENOMEM;
> - goto unregister_tzs;
> + goto disable_clocks;
> }
>
> zone->reg = tegra->regs + t124_thermctl_temp_zones[i].offset;
> zone->shift = t124_thermctl_temp_zones[i].shift;
>
> - tz = thermal_zone_of_sensor_register(&pdev->dev, i, zone,
> - &tegra_of_thermal_ops);
> - if (IS_ERR(tz)) {
> - err = PTR_ERR(tz);
> + z = devm_thermal_zone_of_sensor_register(&pdev->dev, i, zone,
I prefer to still use "tz", it seems this line isn't over 80 characters, or we
can add newline.
> + &tegra_of_thermal_ops);
> + if (IS_ERR(z)) {
> + err = PTR_ERR(z);
> dev_err(&pdev->dev, "failed to register sensor: %d\n",
> err);
> - goto unregister_tzs;
> + goto disable_clocks;
> }
> -
> - tegra->thermctl_tzs[i] = tz;
> }
>
> return 0;
>
> -unregister_tzs:
> - while (i--)
> - thermal_zone_of_sensor_unregister(&pdev->dev,
> - tegra->thermctl_tzs[i]);
> -
> disable_clocks:
> clk_disable_unprepare(tegra->clock_tsensor);
> clk_disable_unprepare(tegra->clock_soctherm);
> @@ -448,12 +441,6 @@ disable_clocks:
> static int tegra_soctherm_remove(struct platform_device *pdev)
> {
> struct tegra_soctherm *tegra = platform_get_drvdata(pdev);
> - unsigned int i;
> -
> - for (i = 0; i < ARRAY_SIZE(tegra->thermctl_tzs); ++i) {
> - thermal_zone_of_sensor_unregister(&pdev->dev,
> - tegra->thermctl_tzs[i]);
> - }
>
> clk_disable_unprepare(tegra->clock_tsensor);
> clk_disable_unprepare(tegra->clock_soctherm);
>
next prev parent reply other threads:[~2016-03-10 8:46 UTC|newest]
Thread overview: 97+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-09 21:35 [PATCH 00/13] thermal: convert users of thermal_zone_of_sensor_register to devm_ Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 21:35 ` [PATCH 01/13] hwmon: convert lm75 to use devm_thermal_zone_of_sensor_register Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-10 0:02 ` kbuild test robot
2016-03-10 0:02 ` kbuild test robot
2016-03-10 0:02 ` [lm-sensors] " kbuild test robot
2016-03-10 3:18 ` Guenter Roeck
2016-03-10 3:18 ` [lm-sensors] " Guenter Roeck
2016-03-09 21:35 ` [PATCH 02/13] hwmon: convert ntc_thermistor " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-10 0:14 ` kbuild test robot
2016-03-10 0:14 ` kbuild test robot
2016-03-10 0:14 ` [lm-sensors] [PATCH 02/13] hwmon: convert ntc_thermistor to use devm_thermal_zone_of_sensor_regi kbuild test robot
2016-03-10 2:16 ` [PATCH 02/13] hwmon: convert ntc_thermistor to use devm_thermal_zone_of_sensor_register kbuild test robot
2016-03-10 2:16 ` kbuild test robot
2016-03-10 2:16 ` [lm-sensors] [PATCH 02/13] hwmon: convert ntc_thermistor to use devm_thermal_zone_of_sensor_regi kbuild test robot
2016-03-10 3:19 ` [PATCH 02/13] hwmon: convert ntc_thermistor to use devm_thermal_zone_of_sensor_register Guenter Roeck
2016-03-10 3:19 ` [lm-sensors] [PATCH 02/13] hwmon: convert ntc_thermistor to use devm_thermal_zone_of_sensor_regi Guenter Roeck
2016-03-09 21:35 ` [PATCH 03/13] hwmon: convert tmp102 to use devm_thermal_zone_of_sensor_register Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-10 3:20 ` Guenter Roeck
2016-03-10 3:20 ` [lm-sensors] " Guenter Roeck
2016-03-10 4:43 ` kbuild test robot
2016-03-10 4:43 ` kbuild test robot
2016-03-10 4:43 ` [lm-sensors] " kbuild test robot
2016-03-09 21:35 ` [PATCH 04/13] hwmon: convert scpi-hwmon " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-10 2:29 ` Guenter Roeck
2016-03-10 2:29 ` [lm-sensors] " Guenter Roeck
2016-03-14 19:49 ` Eduardo Valentin
2016-03-14 19:49 ` [lm-sensors] " Eduardo Valentin
2016-03-09 21:35 ` [PATCH 05/13] input: convert sun4i-ts " Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:45 ` Dmitry Torokhov
2016-03-09 21:45 ` Dmitry Torokhov
2016-03-14 21:07 ` Eduardo Valentin
2016-03-14 21:07 ` Eduardo Valentin
2016-03-10 9:34 ` Sascha Hauer
2016-03-10 9:34 ` Sascha Hauer
2016-03-10 13:19 ` Hans de Goede
2016-03-10 13:19 ` Hans de Goede
2016-03-09 21:35 ` [PATCH 06/13] thermal: convert hisi_thermal " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
[not found] ` <1457559336-17652-1-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-03-09 21:35 ` [PATCH 07/13] thermal: convert mtk_thermal " Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 23:18 ` kbuild test robot
2016-03-09 23:18 ` kbuild test robot
2016-03-09 23:18 ` kbuild test robot
2016-03-09 21:35 ` [PATCH 10/13] thermal: convert rockchip_thermal " Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] [PATCH 10/13] thermal: convert rockchip_thermal to use devm_thermal_zone_of_sensor_regi Eduardo Valentin
2016-03-09 22:23 ` [PATCH 10/13] thermal: convert rockchip_thermal to use devm_thermal_zone_of_sensor_register Heiko Stübner
2016-03-09 22:23 ` Heiko Stübner
2016-03-09 22:23 ` [lm-sensors] [PATCH 10/13] thermal: convert rockchip_thermal to use devm_thermal_zone_of_sensor_ Heiko Stübner
2016-03-10 2:36 ` [PATCH 10/13] thermal: convert rockchip_thermal to use devm_thermal_zone_of_sensor_register Caesar Wang
2016-03-10 2:36 ` Caesar Wang
2016-03-10 2:36 ` [lm-sensors] [PATCH 10/13] thermal: convert rockchip_thermal to use devm_thermal_zone_of_sensor_ Caesar Wang
2016-03-09 21:35 ` [PATCH 08/13] thermal: convert qcom-spmi to use devm_thermal_zone_of_sensor_register Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 21:35 ` [PATCH 09/13] thermal: convert rcar_thermal " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 21:35 ` [PATCH 11/13] thermal: convert exynos " Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-09 21:35 ` Eduardo Valentin
2016-03-10 0:16 ` Krzysztof Kozlowski
2016-03-10 0:16 ` Krzysztof Kozlowski
2016-03-10 0:16 ` [lm-sensors] " Krzysztof Kozlowski
2016-03-14 19:48 ` Eduardo Valentin
2016-03-14 19:48 ` Eduardo Valentin
2016-03-14 19:48 ` [lm-sensors] " Eduardo Valentin
2016-03-10 9:16 ` Lukasz Majewski
2016-03-10 9:16 ` Lukasz Majewski
2016-03-10 9:16 ` [lm-sensors] " Lukasz Majewski
2016-03-09 21:35 ` [PATCH 12/13] thermal: convert tegra_thermal " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_registe Eduardo Valentin
[not found] ` <1457559336-17652-13-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-03-10 8:46 ` Wei Ni [this message]
2016-03-10 8:46 ` [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register Wei Ni
2016-03-10 8:46 ` [lm-sensors] [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_reg Wei Ni
2016-03-14 21:16 ` [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register Eduardo Valentin
2016-03-14 21:16 ` [lm-sensors] [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_reg Eduardo Valentin
[not found] ` <20160314211607.GC4740-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2016-03-15 5:42 ` [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register Wei Ni
2016-03-15 5:42 ` Wei Ni
2016-03-15 5:42 ` [lm-sensors] [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_reg Wei Ni
2016-03-09 21:35 ` [PATCH 13/13] hwmon: convert ti-thermal to use devm_thermal_zone_of_sensor_register Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 21:35 ` [PATCH 13/13] thermal: " Eduardo Valentin
2016-03-09 21:35 ` [lm-sensors] " Eduardo Valentin
2016-03-09 22:11 ` kbuild test robot
2016-03-09 22:11 ` kbuild test robot
2016-03-09 22:11 ` [lm-sensors] [PATCH 13/13] thermal: convert ti-thermal to use devm_thermal_zone_of_sensor_regist kbuild test robot
2016-03-15 12:26 ` [PATCH 13/13] thermal: convert ti-thermal to use devm_thermal_zone_of_sensor_register Keerthy
2016-03-15 12:38 ` [lm-sensors] [PATCH 13/13] thermal: convert ti-thermal to use devm_thermal_zone_of_sensor_regist Keerthy
2016-03-15 12:26 ` [PATCH 13/13] thermal: convert ti-thermal to use devm_thermal_zone_of_sensor_register Keerthy
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=56E1347F.8040406@nvidia.com \
--to=wni-ddmlm1+adcrqt0dzr+alfa@public.gmane.org \
--cc=edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=gnurou-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=lm-sensors-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org \
--cc=rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=swarren-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org \
--cc=thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
/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 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.