From: Alexander Shishkin Date: Fri, 4 Mar 2016 14:55:12 +0000 (+0200) Subject: stm class: Remove unnecessary pointer increment X-Git-Tag: firefly_0821_release~176^2~4^2~44^2~37 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8ebbc16a38eea98885d097b14551dcc378ba0ba5;p=firefly-linux-kernel-4.4.55.git stm class: Remove unnecessary pointer increment Readability: a postfix increment is used on a pointer which is not used anywhere afterwards, which may send the reader looking through the function one extra time. Drop the unnecessary increment. Reported-by: Alan Cox Signed-off-by: Alexander Shishkin Reviewed-by: Laurent Fert (cherry picked from commit fb0801904bbbc7b109d4009520c7fa34bcfb7450) --- diff --git a/drivers/hwtracing/stm/policy.c b/drivers/hwtracing/stm/policy.c index 1db189657b2b..1c061cb9bff0 100644 --- a/drivers/hwtracing/stm/policy.c +++ b/drivers/hwtracing/stm/policy.c @@ -342,7 +342,7 @@ stp_policies_make(struct config_group *group, const char *name) return ERR_PTR(-EINVAL); } - *p++ = '\0'; + *p = '\0'; stm = stm_find_device(devname); kfree(devname);