Changeset 666773c in mainline for kernel/arch/ia64/src/drivers/ega.c
- Timestamp:
- 2008-12-31T15:33:29Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9805cde
- Parents:
- d8c0dc5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/drivers/ega.c
rd8c0dc5 r666773c 83 83 stdout = &ega_console; 84 84 85 86 85 ega_parea.pbase = VIDEORAM & 0xffffffff; 87 86 ega_parea.vbase = (uintptr_t) videoram; … … 90 89 ddi_parea_register(&ega_parea); 91 90 92 93 91 sysinfo_set_item_val("fb", NULL, true); 94 92 sysinfo_set_item_val("fb.kind", NULL, 2); … … 96 94 sysinfo_set_item_val("fb.height", NULL, ROWS); 97 95 sysinfo_set_item_val("fb.blinking", NULL, true); 98 sysinfo_set_item_val("fb.address.physical", NULL, VIDEORAM & 0xffffffff); 96 sysinfo_set_item_val("fb.address.physical", NULL, 97 VIDEORAM & 0xffffffff); 99 98 100 99 #ifndef CONFIG_FB … … 117 116 return; 118 117 119 memmove((void *) videoram, (void *) (videoram + ROW * 2), (SCREEN - ROW) * 2); 118 memmove((void *) videoram, (void *) (videoram + ROW * 2), 119 (SCREEN - ROW) * 2); 120 120 _memsetw(videoram + (SCREEN - ROW) * 2, ROW, 0x0720); 121 121 ega_cursor = ega_cursor - ROW;
Note:
See TracChangeset
for help on using the changeset viewer.