On 30/07/2018 04:45, Wei Yongjun wrote: > Fix the retrn value check which testing the wrong variable s/retrn/return/ "which testing" is not correct. I would suggest something like: "The return value from devm_kzalloc() is not checked correctly. The test is done against a wrong variable. Fix it." > in armada_thermal_probe(). > > Fixes: e72f03ef2543 ("thermal: armada: use the resource managed registration helper alternative") > Signed-off-by: Wei Yongjun <weiyongjun1@xxxxxxxxxx> > --- > v1 - > v2: fix typo of patch subject > --- > drivers/thermal/armada_thermal.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c > index 8de4ba5..a269482 100644 > --- a/drivers/thermal/armada_thermal.c > +++ b/drivers/thermal/armada_thermal.c > @@ -610,7 +610,7 @@ static int armada_thermal_probe(struct platform_device *pdev) > return -ENOMEM; > > drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL); > - if (!priv) > + if (!drvdata) > return -ENOMEM; > > priv->dev = &pdev->dev; > -- <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook | <http://twitter.com/#!/linaroorg> Twitter | <http://www.linaro.org/linaro-blog/> Blog -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html