diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-05 17:20:03 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-04-05 17:20:03 +0200 |
commit | f040677be3c0eec63a5bd013a092ac5182790a50 (patch) | |
tree | 92802f7fe914f55b3348b56f44edc06890638c8c /i386/i386at/cram.h | |
parent | 305c9dcf20c06b07183a09131225248be80cfb8a (diff) | |
download | gnumach-f040677be3c0eec63a5bd013a092ac5182790a50.tar.gz gnumach-f040677be3c0eec63a5bd013a092ac5182790a50.tar.bz2 gnumach-f040677be3c0eec63a5bd013a092ac5182790a50.zip |
kd: Do not read the CMOS ram
This could conflict with read/writing the RTC.
* i386/i386at/kd.c (kd_xga_init): Do not read the CRAM. We were always
assuming VGA anyway.
Diffstat (limited to 'i386/i386at/cram.h')
-rw-r--r-- | i386/i386at/cram.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/i386/i386at/cram.h b/i386/i386at/cram.h index 40f3f0a5..8a3a6ec9 100644 --- a/i386/i386at/cram.h +++ b/i386/i386at/cram.h @@ -53,6 +53,8 @@ WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifndef _CRAM_H_ #define _CRAM_H_ +/* XXX: this conflicts with read/writing the RTC */ + /* * outb(CMOS_ADDR, addr); * result = inb(CMOS_DATA); |