RE: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-08 Thread Khiem Nguyen
Hi Zhang, > On 六, 2016-09-03 at 05:25 +, Khiem Nguyen wrote: > > Signed-off-by: Hien Dang > > Signed-off-by: Thao Nguyen > > Signed-off-by: Khiem Nguyen > > Well, I can only see patch 4/5, 5/5 in

RE: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-08 Thread Khiem Nguyen
Hi Zhang, > On 六, 2016-09-03 at 05:25 +, Khiem Nguyen wrote: > > Signed-off-by: Hien Dang > > Signed-off-by: Thao Nguyen > > Signed-off-by: Khiem Nguyen > > Well, I can only see patch 4/5, 5/5 in patchwork but I can not see this > one Thanks for your information. Will try to send

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-06 Thread Geert Uytterhoeven
Hi Khiem, On Tue, Sep 6, 2016 at 2:19 PM, Khiem Nguyen wrote: >> > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) { >> >> > + priv->id = of_alias_get_id(dev->of_node, "tsc"); >> > + if (priv->id < 0) { >> > + dev_err(dev,

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-06 Thread Geert Uytterhoeven
Hi Khiem, On Tue, Sep 6, 2016 at 2:19 PM, Khiem Nguyen wrote: >> > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) { >> >> > + priv->id = of_alias_get_id(dev->of_node, "tsc"); >> > + if (priv->id < 0) { >> > + dev_err(dev, "Failed to get alias id

RE: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-06 Thread Khiem Nguyen
Hi Geert, Thanks for your comment. > > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) { > > > + priv->id = of_alias_get_id(dev->of_node, "tsc"); > > + if (priv->id < 0) { > > + dev_err(dev, "Failed to get alias id (%d)\n", priv->id); > > +

RE: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-06 Thread Khiem Nguyen
Hi Geert, Thanks for your comment. > > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) { > > > + priv->id = of_alias_get_id(dev->of_node, "tsc"); > > + if (priv->id < 0) { > > + dev_err(dev, "Failed to get alias id (%d)\n", priv->id); > > +

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-05 Thread Zhang Rui
On 六, 2016-09-03 at 05:25 +, Khiem Nguyen wrote: > Signed-off-by: Hien Dang > Signed-off-by: Thao Nguyen > Signed-off-by: Khiem Nguyen Well, I can only see patch 4/5, 5/5 in patchwork but I can not see

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-05 Thread Zhang Rui
On 六, 2016-09-03 at 05:25 +, Khiem Nguyen wrote: > Signed-off-by: Hien Dang > Signed-off-by: Thao Nguyen > Signed-off-by: Khiem Nguyen Well, I can only see patch 4/5, 5/5 in patchwork but I can not see this one thanks, rui > --- > > v2: >  * Set static function for

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-05 Thread Geert Uytterhoeven
Hi Khiem On Sat, Sep 3, 2016 at 7:25 AM, Khiem Nguyen wrote: > --- /dev/null > +++ b/drivers/thermal/rcar_gen3_thermal.c > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) > +{ > + priv->id = of_alias_get_id(dev->of_node, "tsc"); > + if

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-05 Thread Geert Uytterhoeven
Hi Khiem On Sat, Sep 3, 2016 at 7:25 AM, Khiem Nguyen wrote: > --- /dev/null > +++ b/drivers/thermal/rcar_gen3_thermal.c > +static int rcar_gen3_thermal_probe(struct platform_device *pdev) > +{ > + priv->id = of_alias_get_id(dev->of_node, "tsc"); > + if (priv->id < 0) { > +

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-04 Thread Kuninori Morimoto
Hi > Khiem Nguyen (5): > thermal: rcar_gen3_thermal: Document the R-Car Gen3 thermal bindings > thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver support > arm64: dts: r8a7795: Add R-Car Gen3 thermal support > arm64: dts: r8a7796: Add R-Car Gen3 thermal support > arm64: defconfig:

Re: [PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-04 Thread Kuninori Morimoto
Hi > Khiem Nguyen (5): > thermal: rcar_gen3_thermal: Document the R-Car Gen3 thermal bindings > thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver support > arm64: dts: r8a7795: Add R-Car Gen3 thermal support > arm64: dts: r8a7796: Add R-Car Gen3 thermal support > arm64: defconfig:

[PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-02 Thread Khiem Nguyen
Signed-off-by: Hien Dang Signed-off-by: Thao Nguyen Signed-off-by: Khiem Nguyen --- v2: * Set static function for _linear_temp_converter(). * Update the compatible string following new format. * Add

[PATCH 2/5 v2] thermal: rcar_gen3_thermal: Add R-Car Gen3 thermal driver

2016-09-02 Thread Khiem Nguyen
Signed-off-by: Hien Dang Signed-off-by: Thao Nguyen Signed-off-by: Khiem Nguyen --- v2: * Set static function for _linear_temp_converter(). * Update the compatible string following new format. * Add newline to improve readability. * Change thermal_init callbacks to void functions. *