- Timestamp:
- 2005-10-26T00:07:17Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 807d2d4
- Parents:
- 81e1396
- Location:
- genarch
- Files:
-
- 1 added
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
genarch/include/firmware/ofw/ofw.h
r81e1396 r34d9ab28 54 54 extern void ofw_init(void); 55 55 extern void ofw_done(void); 56 extern intofw_call(const char *service, const int nargs, const int nret, ...);56 extern __address ofw_call(const char *service, const int nargs, const int nret, ...); 57 57 extern void ofw_putchar(const char ch); 58 58 extern phandle ofw_find_device(const char *name); -
genarch/src/firmware/ofw/ofw.c
r81e1396 r34d9ab28 27 27 */ 28 28 29 #include < arch/drivers/ofw.h>29 #include <genarch/firmware/ofw/ofw.h> 30 30 #include <arch/asm.h> 31 31 #include <stdarg.h> 32 32 #include <cpu.h> 33 #include <arch/types.h> 33 34 34 35 ofw_entry ofw; … … 53 54 } 54 55 55 intofw_call(const char *service, const int nargs, const int nret, ...)56 __address ofw_call(const char *service, const int nargs, const int nret, ...) 56 57 { 57 58 va_list list;
Note:
See TracChangeset
for help on using the changeset viewer.