Rev 1754 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1754 | Rev 1780 | ||
|---|---|---|---|
| Line 48... | Line 48... | ||
| 48 | #include <arch/types.h> |
48 | #include <arch/types.h> |
| 49 | #include <typedefs.h> |
49 | #include <typedefs.h> |
| 50 | #include <memstr.h> |
50 | #include <memstr.h> |
| 51 | #include <bitops.h> |
51 | #include <bitops.h> |
| 52 | 52 | ||
| 53 | __u32 vesa_ph_addr; |
53 | uint32_t vesa_ph_addr; |
| 54 | __u16 vesa_width; |
54 | uint16_t vesa_width; |
| 55 | __u16 vesa_height; |
55 | uint16_t vesa_height; |
| 56 | __u16 vesa_bpp; |
56 | uint16_t vesa_bpp; |
| 57 | __u16 vesa_scanline; |
57 | uint16_t vesa_scanline; |
| 58 | 58 | ||
| 59 | int vesa_present(void) |
59 | int vesa_present(void) |
| 60 | { |
60 | { |
| 61 | if (vesa_width != 0xffff) |
61 | if (vesa_width != 0xffff) |
| 62 | return true; |
62 | return true; |