Changeset 84afc7b in mainline for kernel/arch/ia32
- Timestamp:
- 2009-03-18T10:53:12Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e749794
- Parents:
- 8015eeec
- Location:
- kernel/arch/ia32/src
- Files:
-
- 3 edited
-
drivers/i8254.c (modified) (1 diff)
-
ia32.c (modified) (3 diffs)
-
smp/apic.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/drivers/i8254.c
r8015eeec r84afc7b 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ 32 32 /** 33 33 * @file 34 * @brief i8254 chip driver.34 * @brief i8254 chip driver. 35 35 * 36 36 * Low level time functions. -
kernel/arch/ia32/src/ia32.c
r8015eeec r84afc7b 66 66 #include <syscall/syscall.h> 67 67 #include <console/console.h> 68 #include <ddi/device.h>69 68 #include <sysinfo/sysinfo.h> 70 69 #include <arch/boot/boot.h> … … 153 152 { 154 153 #ifdef CONFIG_PC_KBD 155 devno_t devno = device_assign_devno();156 157 154 /* 158 155 * Initialize the i8042 controller. Then initialize the keyboard 159 156 * module and connect it to i8042. Enable keyboard interrupts. 160 157 */ 161 indev_t *kbrdin = i8042_init((i8042_t *) I8042_BASE, devno,IRQ_KBD);158 indev_t *kbrdin = i8042_init((i8042_t *) I8042_BASE, IRQ_KBD); 162 159 if (kbrdin) { 163 160 kbrd_init(kbrdin); … … 170 167 */ 171 168 sysinfo_set_item_val("kbd", NULL, true); 172 sysinfo_set_item_val("kbd.devno", NULL, devno);173 169 sysinfo_set_item_val("kbd.inr", NULL, IRQ_KBD); 174 170 sysinfo_set_item_val("kbd.address.physical", NULL, -
kernel/arch/ia32/src/smp/apic.c
r8015eeec r84afc7b 27 27 */ 28 28 29 /** @addtogroup ia32 29 /** @addtogroup ia32 30 30 * @{ 31 31 */
Note:
See TracChangeset
for help on using the changeset viewer.
