Changeset 577fe9b6 in mainline for boot/arch/ia64/include/sal.h
- Timestamp:
- 2011-08-07T22:09:26Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 699f3bc
- Parents:
- 26fb118a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ia64/include/sal.h
r26fb118a r577fe9b6 32 32 #include <arch/types.h> 33 33 #include <typedefs.h> 34 35 /* 36 * Essential SAL procedures' IDs 37 */ 38 #define SAL_FREQ_BASE 0x1000012 34 39 35 40 typedef struct { … … 103 108 extern void sal_system_table_parse(sal_system_table_header_t *); 104 109 110 extern uint64_t sal_base_clock_frequency(void); 111 112 #define sal_call_1_1(id, arg1, ret1) \ 113 sal_call((id), (arg1), 0, 0, 0, 0, 0, 0, (ret1), NULL, NULL) 114 115 extern uint64_t sal_call(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t, 116 uint64_t, uint64_t, uint64_t, uint64_t *, uint64_t *, uint64_t *); 117 105 118 #endif
Note:
See TracChangeset
for help on using the changeset viewer.