Changeset 98000fb in mainline for kernel/genarch/src/ofw/ebus.c


Ignore:
Timestamp:
2009-06-03T19:34:45Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
301ff30
Parents:
69e68e3
Message:

remove redundant index_t and count_t types (which were always quite ambiguous and not actually needed)

File:
1 edited

Legend:

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

    r69e68e3 r98000fb  
    5050        ofw_tree_property_t *prop;
    5151        ofw_ebus_range_t *range;
    52         count_t ranges;
     52        size_t ranges;
    5353
    5454        prop = ofw_tree_getprop(node, "ranges");
     
    9292
    9393        ofw_ebus_intr_map_t *intr_map = prop->value;
    94         count_t count = prop->size / sizeof(ofw_ebus_intr_map_t);
     94        size_t count = prop->size / sizeof(ofw_ebus_intr_map_t);
    9595       
    9696        ASSERT(count);
Note: See TracChangeset for help on using the changeset viewer.