Changeset 1787e527 in mainline for kernel/genarch/include/ofw/upa.h
- Timestamp:
- 2009-11-16T21:22:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5ebdf94
- Parents:
- fcbd1be (diff), 9c70ed6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/include/ofw/upa.h
rfcbd1be r1787e527 1 1 /* 2 * Copyright (c) 200 5Jakub Jermar2 * Copyright (c) 2006 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup ia64 30 * @{ 31 */ 32 /** @file 33 */ 29 #ifndef KERN_UPA_H_ 30 #define KERN_UPA_H_ 34 31 35 #ifndef KERN_ia64_ARG_H_ 36 #define KERN_ia64_ARG_H_ 32 #include <genarch/ofw/ofw_tree.h> 33 #include <arch/types.h> 34 #include <ddi/irq.h> 35 #include <typedefs.h> 37 36 38 #include <stdarg.h> 37 typedef struct { 38 uint64_t addr; 39 uint64_t size; 40 } __attribute__ ((packed)) ofw_upa_reg_t; 41 42 extern bool ofw_upa_apply_ranges(ofw_tree_node_t *, ofw_upa_reg_t *, 43 uintptr_t *); 39 44 40 45 #endif 41 42 /** @}43 */
Note:
See TracChangeset
for help on using the changeset viewer.