diff options
author | Yangtao Li <tiny.windzz@gmail.com> | 2019-02-16 10:55:26 -0500 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2019-02-18 10:27:38 +0530 |
commit | cd284ae36b6a43d478261bcb7c001db07e3a0ed5 (patch) | |
tree | 872f03cf6c138c9e8e6a81504af82b710009c3d5 /drivers/cpufreq/pcc-cpufreq.c | |
parent | bfeffd155283772bbe78c6a05dec7c0128ee500c (diff) | |
download | blackbird-op-linux-cd284ae36b6a43d478261bcb7c001db07e3a0ed5.tar.gz blackbird-op-linux-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/pcc-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/pcc-cpufreq.c | 2 |
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) { |