cpupower: Remove unneeded semicolon
authorZou Wei <zou_wei@huawei.com>
Tue, 28 Apr 2020 09:43:15 +0000 (17:43 +0800)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 8 May 2020 16:13:26 +0000 (10:13 -0600)
Fixes coccicheck warnings:

tools/power/cpupower/utils/cpupower-info.c:65:2-3: Unneeded semicolon
tools/power/cpupower/utils/cpupower-set.c:75:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/amd_fam14h_idle.c:120:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/cpuidle_sysfs.c:175:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/cpuidle_sysfs.c:56:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/cpuidle_sysfs.c:75:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/hsw_ext_idle.c:82:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/nhm_idle.c:94:2-3: Unneeded semicolon
tools/power/cpupower/utils/idle_monitor/snb_idle.c:80:2-3: Unneeded semicolon

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zou Wei <zou_wei@huawei.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/power/cpupower/utils/cpupower-info.c
tools/power/cpupower/utils/cpupower-set.c
tools/power/cpupower/utils/idle_monitor/amd_fam14h_idle.c
tools/power/cpupower/utils/idle_monitor/cpuidle_sysfs.c
tools/power/cpupower/utils/idle_monitor/hsw_ext_idle.c
tools/power/cpupower/utils/idle_monitor/nhm_idle.c
tools/power/cpupower/utils/idle_monitor/snb_idle.c

index d3755ea..0ba61a2 100644 (file)
@@ -62,7 +62,7 @@ int cmd_info(int argc, char **argv)
                default:
                        print_wrong_arg_exit();
                }
-       };
+       }
 
        if (!params.params)
                params.params = 0x7;
index 3cca6f7..052044d 100644 (file)
@@ -72,7 +72,7 @@ int cmd_set(int argc, char **argv)
                default:
                        print_wrong_arg_exit();
                }
-       };
+       }
 
        if (!params.params)
                print_wrong_arg_exit();
index 20f4634..5edd35b 100644 (file)
@@ -117,7 +117,7 @@ static int amd_fam14h_get_pci_info(struct cstate *state,
                break;
        default:
                return -1;
-       };
+       }
        return 0;
 }
 
index a65f7d0..8b42c2f 100644 (file)
@@ -53,7 +53,7 @@ static int cpuidle_start(void)
                        dprint("CPU %d - State: %d - Val: %llu\n",
                               cpu, state, previous_count[cpu][state]);
                }
-       };
+       }
        return 0;
 }
 
@@ -72,7 +72,7 @@ static int cpuidle_stop(void)
                        dprint("CPU %d - State: %d - Val: %llu\n",
                               cpu, state, previous_count[cpu][state]);
                }
-       };
+       }
        return 0;
 }
 
@@ -172,7 +172,7 @@ static struct cpuidle_monitor *cpuidle_register(void)
                cpuidle_cstates[num].id = num;
                cpuidle_cstates[num].get_count_percent =
                        cpuidle_get_count_percent;
-       };
+       }
 
        /* Free this at program termination */
        previous_count = malloc(sizeof(long long *) * cpu_count);
index 97ad323..55e55b6 100644 (file)
@@ -79,7 +79,7 @@ static int hsw_ext_get_count(enum intel_hsw_ext_id id, unsigned long long *val,
                break;
        default:
                return -1;
-       };
+       }
        if (read_msr(cpu, msr, val))
                return -1;
        return 0;
index 1142711..16eaf00 100644 (file)
@@ -91,7 +91,7 @@ static int nhm_get_count(enum intel_nhm_id id, unsigned long long *val,
                break;
        default:
                return -1;
-       };
+       }
        if (read_msr(cpu, msr, val))
                return -1;
 
index df8b223..811d63a 100644 (file)
@@ -77,7 +77,7 @@ static int snb_get_count(enum intel_snb_id id, unsigned long long *val,
                break;
        default:
                return -1;
-       };
+       }
        if (read_msr(cpu, msr, val))
                return -1;
        return 0;