Changeset 16529d5 in mainline for boot/genarch/ofw.h


Ignore:
Timestamp:
2006-09-20T20:31:44Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
28ecadb
Parents:
61e90dd
Message:

More ofw_tree work and fixes.
Add ofw_tree_lookup().
Every ofw_tree_node now also contains a disambigued name which is essential for tree lookups.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/genarch/ofw.h

    r61e90dd r16529d5  
    103103extern void ofw_write(const char *str, const int len);
    104104
    105 extern int ofw_get_property(const phandle device, const char *name, const void *buf, const int buflen);
     105extern int ofw_get_property(const phandle device, const char *name, void *buf, const int buflen);
    106106extern int ofw_get_proplen(const phandle device, const char *name);
    107107extern int ofw_next_property(const phandle device, char *previous, char *buf);
     
    110110extern phandle ofw_get_peer_node(const phandle node);
    111111extern phandle ofw_find_device(const char *name);
     112
     113extern int ofw_package_to_path(const phandle device, char *buf, const int buflen);
    112114
    113115extern int ofw(ofw_args_t *arg);
Note: See TracChangeset for help on using the changeset viewer.