Changeset 013c4d6 in mainline for kernel/arch/ia64
- Timestamp:
- 2009-02-19T23:55:23Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f32d90b
- Parents:
- d1eece6
- Location:
- kernel/arch/ia64/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
rd1eece6 r013c4d6 66 66 /* NS16550 as a COM 1 */ 67 67 #define NS16550_IRQ (4 + LEGACY_INTERRUPT_BASE) 68 #define NS16550_PORT 0x3f869 68 70 69 bootinfo_t *bootinfo; … … 165 164 166 165 #ifdef CONFIG_NS16550 167 ns16550_init(kbd, NS16550_PORT, NS16550_IRQ, NULL, NULL); 166 (void) ns16550_init((ns16550_t *)NS16550_BASE, kbd, NS16550_IRQ, NULL, 167 NULL); 168 168 #else 169 169 devno_t mouse = device_assign_devno(); … … 250 250 void arch_reboot(void) 251 251 { 252 pio_write_8( 0x64, 0xfe);252 pio_write_8((ioport8_t *)0x64, 0xfe); 253 253 while (1) 254 254 ; -
kernel/arch/ia64/src/smp/smp.c
rd1eece6 r013c4d6 52 52 #include <ddi/irq.h> 53 53 #include <ddi/device.h> 54 #include <arch/drivers/ega.h>55 54 #include <arch/bootinfo.h> 56 55 #include <genarch/kbd/i8042.h>
Note:
See TracChangeset
for help on using the changeset viewer.