projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bfeffd1
)
cpufreq: pcc-cpufreq: remove unneeded semicolon
author
Yangtao Li
<tiny.windzz@gmail.com>
Sat, 16 Feb 2019 15:55:26 +0000
(10:55 -0500)
committer
Viresh Kumar
<viresh.kumar@linaro.org>
Mon, 18 Feb 2019 04:57:38 +0000
(10:27 +0530)
The semicolon is unneeded, so remove it.
Signed-off-by: Yangtao Li <tiny.windzz@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/pcc-cpufreq.c
patch
|
blob
|
history
diff --git
a/drivers/cpufreq/pcc-cpufreq.c
b/drivers/cpufreq/pcc-cpufreq.c
index 099a849396f69abc5eb84306eac76f1d96dd3997..1e5e64643c3a595d0f5e3ebb4f116ae8a70bc1b4 100644
(file)
--- a/
drivers/cpufreq/pcc-cpufreq.c
+++ b/
drivers/cpufreq/pcc-cpufreq.c
@@
-268,7
+268,7
@@
static int pcc_get_offset(int cpu)
if (!pccp || pccp->type != ACPI_TYPE_PACKAGE) {
ret = -ENODEV;
goto out_free;
- }
;
+ }
offset = &(pccp->package.elements[0]);
if (!offset || offset->type != ACPI_TYPE_INTEGER) {