git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
refactor: make pci device driver loading passive, pci bus scanner will not load them...
[lunaix-os.git]
/
lunaix-os
/
hal
/
rtc
/
mc146818a.c
diff --git
a/lunaix-os/hal/rtc/mc146818a.c
b/lunaix-os/hal/rtc/mc146818a.c
index 6b645279e9331def4ba43877f3318caeb83331ce..5083444e29bdf7523e96b4637aa35df23e7b963c 100644
(file)
--- a/
lunaix-os/hal/rtc/mc146818a.c
+++ b/
lunaix-os/hal/rtc/mc146818a.c
@@
-195,7
+195,7
@@
rtc_init(struct device_def* devdef)
// Make sure the rtc timer is disabled by default
rtc_disable_timer();
// Make sure the rtc timer is disabled by default
rtc_disable_timer();
- struct hwrtc* rtc = hwrtc_alloc_new(
devdef,
"mc146818");
+ struct hwrtc* rtc = hwrtc_alloc_new("mc146818");
struct mc146818* state = valloc(sizeof(struct mc146818));
state->rtc_context = rtc;
struct mc146818* state = valloc(sizeof(struct mc146818));
state->rtc_context = rtc;
@@
-212,6
+212,8
@@
rtc_init(struct device_def* devdef)
rtc->get_counts = rtc_getcnt;
rtc->chfreq = rtc_chfreq;
rtc->get_counts = rtc_getcnt;
rtc->chfreq = rtc_chfreq;
+ hwrtc_register(&devdef->class, rtc);
+
return 0;
}
return 0;
}
@@
-220,4
+222,4
@@
static struct device_def devrtc_mc146818 = {
.class = DEVCLASS(DEVIF_SOC, DEVFN_TIME, DEV_RTC),
.init = rtc_init
};
.class = DEVCLASS(DEVIF_SOC, DEVFN_TIME, DEV_RTC),
.init = rtc_init
};
-EXPORT_DEVICE(mc146818, &devrtc_mc146818, load_
earlystage
);
\ No newline at end of file
+EXPORT_DEVICE(mc146818, &devrtc_mc146818, load_
timedev
);
\ No newline at end of file