aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq
diff options
context:
space:
mode:
authorYangtao Li <tiny.windzz@gmail.com>2019-02-16 10:55:26 -0500
committerViresh Kumar <viresh.kumar@linaro.org>2019-02-18 10:27:38 +0530
commitcd284ae36b6a43d478261bcb7c001db07e3a0ed5 (patch)
tree872f03cf6c138c9e8e6a81504af82b710009c3d5 /drivers/cpufreq
parentLinux 5.0-rc1 (diff)
downloadlinux-dev-cd284ae36b6a43d478261bcb7c001db07e3a0ed5.tar.xz
linux-dev-cd284ae36b6a43d478261bcb7c001db07e3a0ed5.zip
cpufreq: pcc-cpufreq: remove unneeded semicolon
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>
Diffstat (limited to 'drivers/cpufreq')
-rw-r--r--drivers/cpufreq/pcc-cpufreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/pcc-cpufreq.c b/drivers/cpufreq/pcc-cpufreq.c
index 099a849396f6..1e5e64643c3a 100644
--- 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) {