Changeset f4c2b6a in mainline for kernel/arch/ppc32/src
- Timestamp:
- 2008-06-03T14:59:48Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4fb51
- Parents:
- b63f8569
- Location:
- kernel/arch/ppc32/src
- Files:
-
- 2 edited
-
interrupt.c (modified) (1 diff)
-
mm/page.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/interrupt.c
rb63f8569 rf4c2b6a 81 81 */ 82 82 #ifdef CONFIG_DEBUG 83 printf("cpu% d: spurious interrupt (inum=%d)\n", CPU->id, inum);83 printf("cpu%u: spurious interrupt (inum=%d)\n", CPU->id, inum); 84 84 #endif 85 85 } -
kernel/arch/ppc32/src/mm/page.c
rb63f8569 rf4c2b6a 49 49 { 50 50 if (last_frame + ALIGN_UP(size, PAGE_SIZE) > KA2PA(KERNEL_ADDRESS_SPACE_END_ARCH)) 51 panic("Unable to map physical memory %p (% dbytes)", physaddr, size)51 panic("Unable to map physical memory %p (%" PRIs " bytes)", physaddr, size) 52 52 53 53 uintptr_t virtaddr = PA2KA(last_frame);
Note:
See TracChangeset
for help on using the changeset viewer.
