summaryrefslogtreecommitdiff
path: root/kernel/vesa.c
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-09-02 18:11:49 +0200
committerMichal Idziorek <m.i@gmx.at>2014-09-02 18:11:49 +0200
commit779c5755f6ddcc8680a2b4a3fa3606d930309ecc (patch)
tree36437d59d94ea70b1bf8b34c890db5cb01100c68 /kernel/vesa.c
parent1e00cdb70f80705751a6f84266171654ed3ab523 (diff)
Finally Fix paging bug! Hooray!
Diffstat (limited to 'kernel/vesa.c')
-rw-r--r--kernel/vesa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/vesa.c b/kernel/vesa.c
index a3fc76c..e8b6269 100644
--- a/kernel/vesa.c
+++ b/kernel/vesa.c
@@ -37,7 +37,7 @@ typedef struct ModeInfoBlock {
uint8_t rsv_mask, rsv_position;
uint8_t directcolor_attributes;
- uint32_t physbase; // your LFB (Linear Framebuffer) address ;)
+ volatile uint32_t physbase; // your LFB (Linear Framebuffer) address ;)
uint32_t reserved1;
uint16_t reserved2;
}vbemodeinfo;