Commit 3072d52b authored by Patrick Mochel's avatar Patrick Mochel

[driver model] Call the i8253 a PIT, not an RTC.

Stupid naming tricks; my bad.
parent 082bd7df
...@@ -281,19 +281,19 @@ unsigned long get_cmos_time(void) ...@@ -281,19 +281,19 @@ unsigned long get_cmos_time(void)
return retval; return retval;
} }
static struct sysdev_class rtc_sysclass = { static struct sysdev_class pit_sysclass = {
set_kset_name("rtc"), set_kset_name("pit"),
}; };
/* XXX this driverfs stuff should probably go elsewhere later -john */ /* XXX this driverfs stuff should probably go elsewhere later -john */
static struct sys_device device_i8253 = { static struct sys_device device_i8253 = {
.id = 0, .id = 0,
.cls = &rtc_sysclass, .cls = &pit_sysclass,
}; };
static int time_init_device(void) static int time_init_device(void)
{ {
int error = sysdev_class_register(&rtc_sysclass); int error = sysdev_class_register(&pit_sysclass);
if (!error) if (!error)
error = sys_device_register(&device_i8253); error = sys_device_register(&device_i8253);
return error; return error;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment