Remove stale comments about P-state invariant TSC and fix style(9) nits.

This commit is contained in:
Jung-uk Kim 2010-12-07 22:43:25 +00:00
parent 1bcc28295b
commit 7214d5d75b
4 changed files with 8 additions and 16 deletions

View File

@ -437,10 +437,8 @@ panicifcpuunsupported(void)
static void
tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status)
{
/*
* If there was an error during the transition or
* TSC is P-state invariant, don't do anything.
*/
/* If there was an error during the transition, don't do anything. */
if (status != 0)
return;

View File

@ -216,10 +216,8 @@ tsc_freq_changing(void *arg, const struct cf_level *level, int *status)
static void
tsc_freq_changed(void *arg, const struct cf_level *level, int status)
{
/*
* If there was an error during the transition or
* TSC is P-state invariant, don't do anything.
*/
/* If there was an error during the transition, don't do anything. */
if (status != 0)
return;

View File

@ -1053,10 +1053,8 @@ identifycyrix(void)
static void
tsc_freq_changed(void *arg __unused, const struct cf_level *level, int status)
{
/*
* If there was an error during the transition or
* TSC is P-state invariant, don't do anything.
*/
/* If there was an error during the transition, don't do anything. */
if (status != 0)
return;

View File

@ -244,10 +244,8 @@ tsc_freq_changing(void *arg, const struct cf_level *level, int *status)
static void
tsc_freq_changed(void *arg, const struct cf_level *level, int status)
{
/*
* If there was an error during the transition or
* TSC is P-state invariant, don't do anything.
*/
/* If there was an error during the transition, don't do anything. */
if (status != 0)
return;