The commit message should be written in an imperative manner, such as "Fix X, make Y do Z" For the code: Reviewed-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxx> Konrad On 5.01.2023 11:53, Dan Carpenter wrote: > The "ret" variable needs to be signed for the error handling to work. > > Fixes: 4cbe60cf5ad6 ("soc: qcom: dcc: Add driver support for Data Capture and Compare unit(DCC)") > Signed-off-by: Dan Carpenter <error27@xxxxxxxxx> > --- > drivers/soc/qcom/dcc.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/soc/qcom/dcc.c b/drivers/soc/qcom/dcc.c > index d4101f79cb5d..1e2cbefc1655 100644 > --- a/drivers/soc/qcom/dcc.c > +++ b/drivers/soc/qcom/dcc.c > @@ -808,8 +808,9 @@ static ssize_t config_reset_write(struct file *filp, > const char __user *user_buf, size_t count, > loff_t *ppos) > { > - unsigned int val, ret; > + unsigned int val; > struct dcc_drvdata *drvdata = filp->private_data; > + int ret; > > ret = kstrtouint_from_user(user_buf, count, 0, &val); > if (ret < 0)