Changeset 84afc7b in mainline for kernel/arch/arm32/src/arm32.c
- Timestamp:
- 2009-03-18T10:53:12Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e749794
- Parents:
- 8015eeec
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/arm32.c
r8015eeec r84afc7b 37 37 #include <config.h> 38 38 #include <arch/console.h> 39 #include <ddi/device.h>40 39 #include <genarch/fb/fb.h> 41 40 #include <genarch/fb/visuals.h> … … 129 128 { 130 129 #ifdef CONFIG_ARM_KBD 131 devno_t devno = device_assign_devno();132 133 130 /* 134 131 * Initialize the msim/GXemul keyboard port. Then initialize the serial line 135 132 * module and connect it to the msim/GXemul keyboard. Enable keyboard interrupts. 136 133 */ 137 indev_t *kbrdin = dsrlnin_init((dsrlnin_t *) gxemul_kbd, devno,GXEMUL_KBD_IRQ);134 indev_t *kbrdin = dsrlnin_init((dsrlnin_t *) gxemul_kbd, GXEMUL_KBD_IRQ); 138 135 if (kbrdin) 139 136 srln_init(kbrdin); … … 144 141 */ 145 142 sysinfo_set_item_val("kbd", NULL, true); 146 sysinfo_set_item_val("kbd.devno", NULL, devno);147 143 sysinfo_set_item_val("kbd.inr", NULL, GXEMUL_KBD_IRQ); 148 144 sysinfo_set_item_val("kbd.address.virtual", NULL, (unative_t) gxemul_kbd);
Note:
See TracChangeset
for help on using the changeset viewer.