Changes in kernel/arch/ppc32/src/drivers/pic.c [adec5b45:ffe276f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/src/drivers/pic.c
radec5b45 rffe276f 34 34 35 35 #include <arch/drivers/pic.h> 36 #include <mm/ km.h>36 #include <mm/page.h> 37 37 #include <byteorder.h> 38 38 #include <bitops.h> … … 42 42 void pic_init(uintptr_t base, size_t size, cir_t *cir, void **cir_arg) 43 43 { 44 pic = (uint32_t *) km_map(base, size, PAGE_WRITE | PAGE_NOT_CACHEABLE);44 pic = (uint32_t *) hw_map(base, size); 45 45 *cir = pic_ack_interrupt; 46 46 *cir_arg = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.