Skip to content

Commit

Permalink
cpufreq: speedstep: remove unneeded semicolon
Browse files Browse the repository at this point in the history
A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Tom Rix authored and Rafael J. Wysocki committed Oct 28, 2020
1 parent e0be38e commit 00d4394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/cpufreq/speedstep-lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ unsigned int speedstep_get_frequency(enum speedstep_processor processor)
return pentium3_get_frequency(processor);
default:
return 0;
};
}
return 0;
}
EXPORT_SYMBOL_GPL(speedstep_get_frequency);
Expand Down

0 comments on commit 00d4394

Please sign in to comment.