Changeset 233af8c5 in mainline for kernel/genarch/src/ofw/ebus.c


Ignore:
Timestamp:
2006-10-03T22:49:10Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e2cc9a0
Parents:
0b414b5
Message:

Rename INO to INR, for the sake of consistency with manuals.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/ofw/ebus.c

    r0b414b5 r233af8c5  
    7575}
    7676
    77 bool ofw_ebus_map_interrupts(ofw_tree_node_t *node, ofw_ebus_reg_t *reg, uint32_t interrupt, int *ino)
     77bool ofw_ebus_map_interrupts(ofw_tree_node_t *node, ofw_ebus_reg_t *reg, uint32_t interrupt, int *inr)
    7878{
    7979        ofw_tree_property_t *prop;
     
    112112        /*
    113113         * We found the device that functions as an interrupt controller
    114          * for the interrupt. We also found mapping from interrupt to INO.
     114         * for the interrupt. We also found mapping from interrupt to INR.
    115115         */
    116116
    117117        controller = ofw_tree_find_node_by_handle(ofw_tree_lookup("/"), intr_map[i].controller_handle);
    118118       
    119         *ino = intr_map[i].controller_ino;
     119        *inr = intr_map[i].controller_inr;
    120120        return true;
    121121}
Note: See TracChangeset for help on using the changeset viewer.