mirror of https://gitee.com/openkylin/linux.git
x86/oprofile: Small coding style fixes
Some small coding style fixes. Signed-off-by: Robert Richter <robert.richter@amd.com>
This commit is contained in:
parent
11be1a7b54
commit
c550091edd
|
@ -144,12 +144,11 @@ static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
|
|||
|
||||
/* setup reset_value */
|
||||
for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
|
||||
if (counter_config[i].enabled) {
|
||||
if (counter_config[i].enabled)
|
||||
reset_value[i] = counter_config[i].count;
|
||||
} else {
|
||||
else
|
||||
reset_value[i] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* clear all counters */
|
||||
for (i = 0; i < NUM_CONTROLS; ++i) {
|
||||
|
|
Loading…
Reference in New Issue