Changeset 61e90dd in mainline for boot/genarch/ofw_tree.h
- Timestamp:
- 2006-09-19T22:42:57Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 16529d5
- Parents:
- 3abe07f5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/genarch/ofw_tree.h
r3abe07f5 r61e90dd 38 38 typedef struct ofw_tree_property ofw_tree_property_t; 39 39 40 /** Memory representation of OpenFirmware device tree node. */ 40 41 struct ofw_tree_node { 41 42 ofw_tree_node_t *parent; … … 43 44 ofw_tree_node_t *child; 44 45 45 unsigned properties; 46 unsigned properties; /**< Number of properties. */ 46 47 ofw_tree_property_t *property; 47 48 }; 48 49 50 /** Memory representation of OpenFirmware device tree node property. */ 49 51 struct ofw_tree_property { 50 52 char name[OFW_TREE_PROPERTY_MAX_NAMELEN];
Note:
See TracChangeset
for help on using the changeset viewer.