Changeset b95b717 in mainline for genarch/ofw.c
- Timestamp:
- 2006-07-03T22:37:50Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c82950a
- Parents:
- b7b5f83
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/ofw.c
rb7b5f83 rb95b717 38 38 typedef struct { 39 39 const char *service; /**< Command name */ 40 unsigned int nargs;/**< Number of in arguments */41 unsigned int nret;/**< Number of out arguments */40 unsigned long nargs; /**< Number of in arguments */ 41 unsigned long nret; /**< Number of out arguments */ 42 42 ofw_arg_t args[MAX_OFW_ARGS]; /**< List of arguments */ 43 43 } ofw_args_t; … … 54 54 phandle ofw_aliases; 55 55 56 static intofw_call(const char *service, const int nargs, const int nret, ofw_arg_t *rets, ...)56 static unsigned long ofw_call(const char *service, const int nargs, const int nret, ofw_arg_t *rets, ...) 57 57 { 58 58 va_list list;
Note:
See TracChangeset
for help on using the changeset viewer.