aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2019-10-13 20:11:32 +0200
committerMarvin Borner2019-10-13 20:11:32 +0200
commit8754542ce074bef0984f91ce1b1cd8aff9b3d5e9 (patch)
tree66c6df9f2a2e9e4482ddfbce10490f706f78da33 /src/kernel/graphics
parent58804851fc49f6db1c87f791d39779766108efb0 (diff)
Fixed all compiler warnings
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/graphics.h5
-rw-r--r--src/kernel/graphics/vesa.c8
2 files changed, 6 insertions, 7 deletions
diff --git a/src/kernel/graphics/graphics.h b/src/kernel/graphics/graphics.h
index 118fe50..baa054a 100644
--- a/src/kernel/graphics/graphics.h
+++ b/src/kernel/graphics/graphics.h
@@ -1,9 +1,8 @@
-#ifndef MELVIX_VGA_H
-#define MELVIX_VGA_H
+#ifndef MELVIX_GRAPHICS_H
+#define MELVIX_GRAPHICS_H
#include <stddef.h>
#include <stdint.h>
-#include "vesa.h"
/**
* Linked table of colors and hardware color codes
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c
index cc9dd97..d19e7d8 100644
--- a/src/kernel/graphics/vesa.c
+++ b/src/kernel/graphics/vesa.c
@@ -15,7 +15,7 @@ void switch_to_vga() {
}
struct edid_data get_edid() {
- /*struct edid_data *edid = umalloc(sizeof(struct edid_data));
+ struct edid_data *edid = (struct edid_data *) kmalloc(sizeof(struct edid_data));
regs16_t regs;
regs.ax = 0x4F15;
@@ -24,9 +24,9 @@ struct edid_data get_edid() {
regs.di = get_offset(edid);
int32(0x10, &regs);
- ufree(edid);
+ kfree(edid);
- return *edid;*/
+ return *edid;
}
struct vbe_mode_info *vbe_set_mode(unsigned short mode) {
@@ -81,7 +81,7 @@ void set_optimal_resolution() {
regs16_t regs;
regs.ax = 0x4F00;
regs.es = 0;
- regs.di = (unsigned short) info;
+ regs.di = 0x2000;
int32(0x10, &regs);
if (regs.ax != 0x004F || strcmp(info->signature, "VESA") != 0) {