Changeset e2cc9a0 in mainline for kernel/arch/sparc64/src/drivers/kbd.c
- Timestamp:
- 2006-10-06T22:37:15Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 33b1903
- Parents:
- 233af8c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/drivers/kbd.c
r233af8c5 re2cc9a0 100 100 uintptr_t pa; 101 101 size_t size; 102 int in o;102 int inr; 103 103 104 104 switch (kbd_type) { … … 109 109 return; 110 110 } 111 if (!ofw_fhc_map_interrupts(node->parent, ((ofw_fhc_reg_t *) prop->value), interrupts, &in o)) {111 if (!ofw_fhc_map_interrupts(node->parent, ((ofw_fhc_reg_t *) prop->value), interrupts, &inr)) { 112 112 printf("Failed to determine keyboard interrupts.\n"); 113 113 return; … … 120 120 return; 121 121 } 122 if (!ofw_ebus_map_interrupts(node->parent, ((ofw_ebus_reg_t *) prop->value), interrupts, &in o)) {122 if (!ofw_ebus_map_interrupts(node->parent, ((ofw_ebus_reg_t *) prop->value), interrupts, &inr)) { 123 123 printf("Failed to determine keyboard interrupts.\n"); 124 124 return;
Note:
See TracChangeset
for help on using the changeset viewer.