Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3672 → Rev 3671

/trunk/kernel/arch/ia32/src/drivers/vesa.c
86,15 → 86,7
panic("Unsupported bits per pixel");
}
fb_properties_t vesa_props = {
.addr = vesa_ph_addr,
.offset = 0,
.x = vesa_width,
.y = vesa_height,
.scan = vesa_scanline,
.visual = visual,
};
fb_init(&vesa_props);
fb_init(vesa_ph_addr, vesa_width, vesa_height, vesa_scanline, visual);
}
 
#endif