Changeset 233af8c5 in mainline for kernel/genarch/src/ofw/ebus.c
- Timestamp:
- 2006-10-03T22:49:10Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2cc9a0
- Parents:
- 0b414b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/ofw/ebus.c
r0b414b5 r233af8c5 75 75 } 76 76 77 bool ofw_ebus_map_interrupts(ofw_tree_node_t *node, ofw_ebus_reg_t *reg, uint32_t interrupt, int *in o)77 bool ofw_ebus_map_interrupts(ofw_tree_node_t *node, ofw_ebus_reg_t *reg, uint32_t interrupt, int *inr) 78 78 { 79 79 ofw_tree_property_t *prop; … … 112 112 /* 113 113 * We found the device that functions as an interrupt controller 114 * for the interrupt. We also found mapping from interrupt to IN O.114 * for the interrupt. We also found mapping from interrupt to INR. 115 115 */ 116 116 117 117 controller = ofw_tree_find_node_by_handle(ofw_tree_lookup("/"), intr_map[i].controller_handle); 118 118 119 *in o = intr_map[i].controller_ino;119 *inr = intr_map[i].controller_inr; 120 120 return true; 121 121 }
Note:
See TracChangeset
for help on using the changeset viewer.