cpufreq: pcc-cpufreq: remove unneeded semicolon
authorYangtao Li <tiny.windzz@gmail.com>
Sat, 16 Feb 2019 15:55:26 +0000 (10:55 -0500)
committerViresh 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

index 099a849396f69abc5eb84306eac76f1d96dd3997..1e5e64643c3a595d0f5e3ebb4f116ae8a70bc1b4 100644 (file)
@@ -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) {