- Timestamp:
- 2009-02-25T21:32:18Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6b1de7a
- Parents:
- f542825
- Location:
- kernel/arch/sparc64/src/drivers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/drivers/fhc.c
rf542825 r3e5a814 46 46 #include <arch/types.h> 47 47 #include <genarch/ofw/ofw_tree.h> 48 #include <sysinfo/sysinfo.h> 48 49 49 50 fhc_t *central_fhc = NULL; … … 87 88 fhc->uart_imap = (uint32_t *) hw_map(paddr, reg->size); 88 89 90 /* 91 * Set sysinfo data needed by the uspace FHC driver. 92 */ 93 sysinfo_set_item_val("fhc.uart.size", NULL, reg->size); 94 sysinfo_set_item_val("fhc.uart.physical", NULL, paddr); 95 89 96 return fhc; 90 97 } -
kernel/arch/sparc64/src/drivers/kbd.c
rf542825 r3e5a814 48 48 #include <func.h> 49 49 #include <print.h> 50 #include <sysinfo/sysinfo.h> 50 51 51 52 kbd_type_t kbd_type = KBD_UNKNOWN; … … 116 117 return; 117 118 } 119 sysinfo_set_item_val("kbd.cir.fhc", NULL, 1); 118 120 break; 119 121
Note:
See TracChangeset
for help on using the changeset viewer.