projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7374a3e
)
soc: fsl: guts: remove unneeded semicolon
author
Yang Li
<yang.lee@linux.alibaba.com>
Wed, 3 Feb 2021 01:51:03 +0000
(09:51 +0800)
committer
Li Yang
<leoyang.li@nxp.com>
Tue, 6 Apr 2021 20:25:50 +0000
(15:25 -0500)
Eliminate the following coccicheck warning:
./drivers/soc/fsl/guts.c:120:2-3: Unneeded semicolon
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Li Yang <leoyang.li@nxp.com>
drivers/soc/fsl/guts.c
patch
|
blob
|
history
diff --git
a/drivers/soc/fsl/guts.c
b/drivers/soc/fsl/guts.c
index
34810f9
..
d5e9a5f
100644
(file)
--- a/
drivers/soc/fsl/guts.c
+++ b/
drivers/soc/fsl/guts.c
@@
-117,7
+117,7
@@
static const struct fsl_soc_die_attr *fsl_soc_die_match(
if (matches->svr == (svr & matches->mask))
return matches;
matches++;
- }
;
+ }
return NULL;
}