All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wei Ni <wni-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
To: Eduardo Valentin <edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Rui Zhang <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	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: Tue, 15 Mar 2016 13:42:12 +0800	[thread overview]
Message-ID: <56E7A0B4.2050900@nvidia.com> (raw)
In-Reply-To: <20160314211607.GC4740-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>



On 2016年03月15日 05:16, Eduardo Valentin wrote:
> * PGP Signed by an unknown key
> 
> On Thu, Mar 10, 2016 at 04:46:55PM +0800, Wei Ni wrote:
>>
>>
>> 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.
> 
> 
> Yeah,
> 
> 
>>
>>> +							 &tegra_of_thermal_ops);
> 
> CHECK: Alignment should match open parenthesis
> #423: FILE: drivers/thermal/tegra_soctherm.c:423:
> +		tz = devm_thermal_zone_of_sensor_register(&pdev->dev, i, zone,
> +							 &tegra_of_thermal_ops);
> 
> and if you align it, then, you get the warning:
> WARNING: line over 80 characters
> #423: FILE: drivers/thermal/tegra_soctherm.c:423:
> +							  &tegra_of_thermal_ops);
> 
> And I did not want to add either of the above to the driver. 
> 
> But if you prefer tz over z, we can keep the first (check) then.
> 
> What do you prefer?

Hmm, I see.
Ok, it's better to use "z" to resolve it.

Wei.
> 
> 
> 
> 
> 
> * Unknown Key
> * 0x7DA4E256
> 

WARNING: multiple messages have this Message-ID (diff)
From: Wei Ni <wni@nvidia.com>
To: Eduardo Valentin <edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Rui Zhang <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>,
	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: Tue, 15 Mar 2016 05:42:12 +0000	[thread overview]
Message-ID: <56E7A0B4.2050900@nvidia.com> (raw)
In-Reply-To: <20160314211607.GC4740-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>

CgpPbiAyMDE25bm0MDPmnIgxNeaXpSAwNToxNiwgRWR1YXJkbyBWYWxlbnRpbiB3cm90ZToKPiAq
IFBHUCBTaWduZWQgYnkgYW4gdW5rbm93biBrZXkKPiAKPiBPbiBUaHUsIE1hciAxMCwgMjAxNiBh
dCAwNDo0Njo1NVBNICswODAwLCBXZWkgTmkgd3JvdGU6Cj4+Cj4+Cj4+IE9uIDIwMTblubQwM+ac
iDEw5pelIDA1OjM1LCBFZHVhcmRvIFZhbGVudGluIHdyb3RlOgo+Pj4gVGhpcyBjaGFuZ2VzIHRo
ZSBkcml2ZXIgdG8gdXNlIHRoZSBkZXZtXyB2ZXJzaW9uCj4+PiBvZiB0aGVybWFsX3pvbmVfb2Zf
c2Vuc29yX3JlZ2lzdGVyIGFuZCBjbGVhbnMKPj4+IHVwIHRoZSAgbG9jYWwgcG9pbnRzIGFuZCB1
bnJlZ2lzdGVyIGNhbGxzLgo+Pj4KPj4+IENjOiBaaGFuZyBSdWkgPHJ1aS56aGFuZ0BpbnRlbC5j
b20+Cj4+PiBDYzogU3RlcGhlbiBXYXJyZW4gPHN3YXJyZW5Ad3d3ZG90b3JnLm9yZz4KPj4+IENj
OiBUaGllcnJ5IFJlZGluZyA8dGhpZXJyeS5yZWRpbmdAZ21haWwuY29tPgo+Pj4gQ2M6IEFsZXhh
bmRyZSBDb3VyYm90IDxnbnVyb3VAZ21haWwuY29tPgo+Pj4gQ2M6IGxpbnV4LXBtQHZnZXIua2Vy
bmVsLm9yZwo+Pj4gQ2M6IGxpbnV4LXRlZ3JhQHZnZXIua2VybmVsLm9yZwo+Pj4gQ2M6IGxpbnV4
LWtlcm5lbEB2Z2VyLmtlcm5lbC5vcmcKPj4+IFNpZ25lZC1vZmYtYnk6IEVkdWFyZG8gVmFsZW50
aW4gPGVkdWJlenZhbEBnbWFpbC5jb20+Cj4+PiAtLS0KPj4+ICBkcml2ZXJzL3RoZXJtYWwvdGVn
cmFfc29jdGhlcm0uYyB8IDMxICsrKysrKysrKy0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KPj4+ICAx
IGZpbGUgY2hhbmdlZCwgOSBpbnNlcnRpb25zKCspLCAyMiBkZWxldGlvbnMoLSkKPj4+Cj4+PiBk
aWZmIC0tZ2l0IGEvZHJpdmVycy90aGVybWFsL3RlZ3JhX3NvY3RoZXJtLmMgYi9kcml2ZXJzL3Ro
ZXJtYWwvdGVncmFfc29jdGhlcm0uYwo+Pj4gaW5kZXggNzRlYTU3Ni4uMDAxOGNjZCAxMDA2NDQK
Pj4+IC0tLSBhL2RyaXZlcnMvdGhlcm1hbC90ZWdyYV9zb2N0aGVybS5jCj4+PiArKysgYi9kcml2
ZXJzL3RoZXJtYWwvdGVncmFfc29jdGhlcm0uYwo+Pj4gQEAgLTE2OCw3ICsxNjgsNyBAQCBzdHJ1
Y3QgdGVncmFfc29jdGhlcm0gewo+Pj4gIAlzdHJ1Y3QgY2xrICpjbG9ja19zb2N0aGVybTsKPj4+
ICAJdm9pZCBfX2lvbWVtICpyZWdzOwo+Pj4gIAo+Pj4gLQlzdHJ1Y3QgdGhlcm1hbF96b25lX2Rl
dmljZSAqdGhlcm1jdGxfdHpzWzRdOwo+Pj4gKyNkZWZpbmUgWk9ORV9OVU1CRVIJCTQKPj4+ICB9
Owo+Pj4gIAo+Pj4gIHN0cnVjdCB0c2Vuc29yX3NoYXJlZF9jYWxpYnJhdGlvbiB7Cj4+PiBAQCAt
MzQyLDcgKzM0Miw3IEBAIHN0YXRpYyBjb25zdCBzdHJ1Y3QgdGhlcm1jdGxfem9uZV9kZXNjIHQx
MjRfdGhlcm1jdGxfdGVtcF96b25lc1tdID0gewo+Pj4gIHN0YXRpYyBpbnQgdGVncmFfc29jdGhl
cm1fcHJvYmUoc3RydWN0IHBsYXRmb3JtX2RldmljZSAqcGRldikKPj4+ICB7Cj4+PiAgCXN0cnVj
dCB0ZWdyYV9zb2N0aGVybSAqdGVncmE7Cj4+PiAtCXN0cnVjdCB0aGVybWFsX3pvbmVfZGV2aWNl
ICp0ejsKPj4+ICsJc3RydWN0IHRoZXJtYWxfem9uZV9kZXZpY2UgKno7Cj4+PiAgCXN0cnVjdCB0
c2Vuc29yX3NoYXJlZF9jYWxpYnJhdGlvbiBzaGFyZWRfY2FsaWI7Cj4+PiAgCXN0cnVjdCByZXNv
dXJjZSAqcmVzOwo+Pj4gIAl1bnNpZ25lZCBpbnQgaTsKPj4+IEBAIC00MDgsMzYgKzQwOCwyOSBA
QCBzdGF0aWMgaW50IHRlZ3JhX3NvY3RoZXJtX3Byb2JlKHN0cnVjdCBwbGF0Zm9ybV9kZXZpY2Ug
KnBkZXYpCj4+PiAgCj4+PiAgCS8qIEluaXRpYWxpemUgdGhlcm1jdGwgc2Vuc29ycyAqLwo+Pj4g
IAo+Pj4gLQlmb3IgKGkgPSAwOyBpIDwgQVJSQVlfU0laRSh0ZWdyYS0+dGhlcm1jdGxfdHpzKTsg
KytpKSB7Cj4+PiArCWZvciAoaSA9IDA7IGkgPCBaT05FX05VTUJFUjsgKytpKSB7Cj4+PiAgCQlz
dHJ1Y3QgdGVncmFfdGhlcm1jdGxfem9uZSAqem9uZSA9Cj4+PiAgCQkJZGV2bV9remFsbG9jKCZw
ZGV2LT5kZXYsIHNpemVvZigqem9uZSksIEdGUF9LRVJORUwpOwo+Pj4gIAkJaWYgKCF6b25lKSB7
Cj4+PiAgCQkJZXJyID0gLUVOT01FTTsKPj4+IC0JCQlnb3RvIHVucmVnaXN0ZXJfdHpzOwo+Pj4g
KwkJCWdvdG8gZGlzYWJsZV9jbG9ja3M7Cj4+PiAgCQl9Cj4+PiAgCj4+PiAgCQl6b25lLT5yZWcg
PSB0ZWdyYS0+cmVncyArIHQxMjRfdGhlcm1jdGxfdGVtcF96b25lc1tpXS5vZmZzZXQ7Cj4+PiAg
CQl6b25lLT5zaGlmdCA9IHQxMjRfdGhlcm1jdGxfdGVtcF96b25lc1tpXS5zaGlmdDsKPj4+ICAK
Pj4+IC0JCXR6ID0gdGhlcm1hbF96b25lX29mX3NlbnNvcl9yZWdpc3RlcigmcGRldi0+ZGV2LCBp
LCB6b25lLAo+Pj4gLQkJCQkJCSAgICAgJnRlZ3JhX29mX3RoZXJtYWxfb3BzKTsKPj4+IC0JCWlm
IChJU19FUlIodHopKSB7Cj4+PiAtCQkJZXJyID0gUFRSX0VSUih0eik7Cj4+PiArCQl6ID0gZGV2
bV90aGVybWFsX3pvbmVfb2Zfc2Vuc29yX3JlZ2lzdGVyKCZwZGV2LT5kZXYsIGksIHpvbmUsCj4+
Cj4+IEkgcHJlZmVyIHRvIHN0aWxsIHVzZSAidHoiLCBpdCBzZWVtcyB0aGlzIGxpbmUgaXNuJ3Qg
b3ZlciA4MCBjaGFyYWN0ZXJzLCBvciB3ZQo+PiBjYW4gYWRkIG5ld2xpbmUuCj4gCj4gCj4gWWVh
aCwKPiAKPiAKPj4KPj4+ICsJCQkJCQkJICZ0ZWdyYV9vZl90aGVybWFsX29wcyk7Cj4gCj4gQ0hF
Q0s6IEFsaWdubWVudCBzaG91bGQgbWF0Y2ggb3BlbiBwYXJlbnRoZXNpcwo+ICM0MjM6IEZJTEU6
IGRyaXZlcnMvdGhlcm1hbC90ZWdyYV9zb2N0aGVybS5jOjQyMzoKPiArCQl0eiA9IGRldm1fdGhl
cm1hbF96b25lX29mX3NlbnNvcl9yZWdpc3RlcigmcGRldi0+ZGV2LCBpLCB6b25lLAo+ICsJCQkJ
CQkJICZ0ZWdyYV9vZl90aGVybWFsX29wcyk7Cj4gCj4gYW5kIGlmIHlvdSBhbGlnbiBpdCwgdGhl
biwgeW91IGdldCB0aGUgd2FybmluZzoKPiBXQVJOSU5HOiBsaW5lIG92ZXIgODAgY2hhcmFjdGVy
cwo+ICM0MjM6IEZJTEU6IGRyaXZlcnMvdGhlcm1hbC90ZWdyYV9zb2N0aGVybS5jOjQyMzoKPiAr
CQkJCQkJCSAgJnRlZ3JhX29mX3RoZXJtYWxfb3BzKTsKPiAKPiBBbmQgSSBkaWQgbm90IHdhbnQg
dG8gYWRkIGVpdGhlciBvZiB0aGUgYWJvdmUgdG8gdGhlIGRyaXZlci4gCj4gCj4gQnV0IGlmIHlv
dSBwcmVmZXIgdHogb3ZlciB6LCB3ZSBjYW4ga2VlcCB0aGUgZmlyc3QgKGNoZWNrKSB0aGVuLgo+
IAo+IFdoYXQgZG8geW91IHByZWZlcj8KCkhtbSwgSSBzZWUuCk9rLCBpdCdzIGJldHRlciB0byB1
c2UgInoiIHRvIHJlc29sdmUgaXQuCgpXZWkuCj4gCj4gCj4gCj4gCj4gCj4gKiBVbmtub3duIEtl
eQo+ICogMHg3REE0RTI1Ngo+IAoKX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fX19fX18KbG0tc2Vuc29ycyBtYWlsaW5nIGxpc3QKbG0tc2Vuc29yc0BsbS1zZW5zb3Jz
Lm9yZwpodHRwOi8vbGlzdHMubG0tc2Vuc29ycy5vcmcvbWFpbG1hbi9saXN0aW5mby9sbS1zZW5z
b3Jz

WARNING: multiple messages have this Message-ID (diff)
From: Wei Ni <wni@nvidia.com>
To: Eduardo Valentin <edubezval@gmail.com>
Cc: Rui Zhang <rui.zhang@intel.com>,
	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: Tue, 15 Mar 2016 13:42:12 +0800	[thread overview]
Message-ID: <56E7A0B4.2050900@nvidia.com> (raw)
In-Reply-To: <20160314211607.GC4740@localhost.localdomain>



On 2016年03月15日 05:16, Eduardo Valentin wrote:
> * PGP Signed by an unknown key
> 
> On Thu, Mar 10, 2016 at 04:46:55PM +0800, Wei Ni wrote:
>>
>>
>> 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.
> 
> 
> Yeah,
> 
> 
>>
>>> +							 &tegra_of_thermal_ops);
> 
> CHECK: Alignment should match open parenthesis
> #423: FILE: drivers/thermal/tegra_soctherm.c:423:
> +		tz = devm_thermal_zone_of_sensor_register(&pdev->dev, i, zone,
> +							 &tegra_of_thermal_ops);
> 
> and if you align it, then, you get the warning:
> WARNING: line over 80 characters
> #423: FILE: drivers/thermal/tegra_soctherm.c:423:
> +							  &tegra_of_thermal_ops);
> 
> And I did not want to add either of the above to the driver. 
> 
> But if you prefer tz over z, we can keep the first (check) then.
> 
> What do you prefer?

Hmm, I see.
Ok, it's better to use "z" to resolve it.

Wei.
> 
> 
> 
> 
> 
> * Unknown Key
> * 0x7DA4E256
> 

  parent reply	other threads:[~2016-03-15  5:42 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
2016-03-09 21:35 ` [PATCH 08/13] thermal: convert qcom-spmi " 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
     [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 11/13] thermal: convert exynos to use devm_thermal_zone_of_sensor_register 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     ` [PATCH 12/13] thermal: convert tegra_thermal to use devm_thermal_zone_of_sensor_register Wei Ni
2016-03-10  8:46       ` 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           ` Wei Ni [this message]
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             ` [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=56E7A0B4.2050900@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.