From: Alexander Shishkin Date: Fri, 4 Mar 2016 14:30:24 +0000 (+0200) Subject: stm class: Remove a pointless line X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8fa11d1c1322f3de40a0e3f3f3e57436a204fcc4;p=linux-beck.git stm class: Remove a pointless line No point in explicitly setting something to zero right after we explicitly checked that it is zero. Fix this. Reported-by: Alan Cox Signed-off-by: Alexander Shishkin Reviewed-by: Laurent Fert --- diff --git a/drivers/hwtracing/stm/core.c b/drivers/hwtracing/stm/core.c index de80d45d8df9..18f176eac06d 100644 --- a/drivers/hwtracing/stm/core.c +++ b/drivers/hwtracing/stm/core.c @@ -546,8 +546,6 @@ static int stm_char_policy_set_ioctl(struct stm_file *stmf, void __user *arg) if (ret) goto err_free; - ret = 0; - if (stm->data->link) ret = stm->data->link(stm->data, stmf->output.master, stmf->output.channel);