Clean up the probe message and sort the function table according to

the function order in the file.
This commit is contained in:
njl 2004-01-12 06:55:50 +00:00
parent a822b47d4c
commit 9a9dc0c362
2 changed files with 6 additions and 6 deletions

View File

@ -151,10 +151,10 @@ static struct {
} sysctl_table[] = {
/* name, handler */
{"force_fan", hci_force_fan},
{"cpu_speed", hci_cpu_speed},
{"video_output", hci_video_output},
{"lcd_backlight", hci_lcd_backlight},
{"lcd_brightness", hci_lcd_brightness},
{"lcd_backlight", hci_lcd_backlight},
{"cpu_speed", hci_cpu_speed},
{NULL, NULL}
};
@ -198,7 +198,7 @@ acpi_toshiba_probe(device_t dev)
device_get_unit(dev) == 0 &&
(acpi_MatchHid(dev, "TOS6200") ||
acpi_MatchHid(dev, "TOS6207"))) {
device_set_desc(dev, "Toshiba Extra HCI");
device_set_desc(dev, "Toshiba HCI Extras");
ret = 0;
}

View File

@ -151,10 +151,10 @@ static struct {
} sysctl_table[] = {
/* name, handler */
{"force_fan", hci_force_fan},
{"cpu_speed", hci_cpu_speed},
{"video_output", hci_video_output},
{"lcd_backlight", hci_lcd_backlight},
{"lcd_brightness", hci_lcd_brightness},
{"lcd_backlight", hci_lcd_backlight},
{"cpu_speed", hci_cpu_speed},
{NULL, NULL}
};
@ -198,7 +198,7 @@ acpi_toshiba_probe(device_t dev)
device_get_unit(dev) == 0 &&
(acpi_MatchHid(dev, "TOS6200") ||
acpi_MatchHid(dev, "TOS6207"))) {
device_set_desc(dev, "Toshiba Extra HCI");
device_set_desc(dev, "Toshiba HCI Extras");
ret = 0;
}