Changeset f941347 in mainline for arch/ppc32/loader/main.h
- Timestamp:
- 2006-03-17T12:46:35Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dcde32
- Parents:
- 543c31f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc32/loader/main.h
r543c31f rf941347 32 32 #include "ofw.h" 33 33 34 /** Align to the nearest higher address. 35 * 36 * @param addr Address or size to be aligned. 37 * @param align Size of alignment, must be power of 2. 38 */ 39 #define ALIGN_UP(addr, align) (((addr) + ((align) - 1)) & ~((align) - 1)) 40 34 41 extern int _binary_____________kernel_kernel_bin_start; 35 42 extern int _binary_____________kernel_kernel_bin_end;
Note:
See TracChangeset
for help on using the changeset viewer.