Changeset 457 for trunk/kernel/devices
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (6 years ago)
- Location:
- trunk/kernel/devices
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/devices/dev_dma.c
r437 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_special.h> 26 26 #include <chdev.h> -
trunk/kernel/devices/dev_dma.h
r437 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 #include <spinlock.h> 30 30 -
trunk/kernel/devices/dev_fbf.c
r440 r457 23 23 24 24 #include <kernel_config.h> 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 #include <hal_gpt.h> 27 27 #include <thread.h> -
trunk/kernel/devices/dev_fbf.h
r188 r457 25 25 #define _DEV_FBF_H 26 26 27 #include <hal_ types.h>27 #include <hal_kernel_types.h> 28 28 29 29 /**** Forward declarations ****/ -
trunk/kernel/devices/dev_iob.c
r422 r457 23 23 24 24 #include <kernel_config.h> 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 #include <hal_special.h> 27 27 #include <remote_spinlock.h> -
trunk/kernel/devices/dev_iob.h
r346 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 #include <spinlock.h> 30 30 -
trunk/kernel/devices/dev_ioc.c
r440 r457 23 23 24 24 #include <kernel_config.h> 25 #include <hal_ types.h>25 #include <hal_kernel_types.h> 26 26 #include <hal_gpt.h> 27 27 #include <hal_drivers.h> -
trunk/kernel/devices/dev_ioc.h
r437 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 30 30 /**** Forward declarations ****/ -
trunk/kernel/devices/dev_mmc.c
r440 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_special.h> 26 26 #include <hal_drivers.h> -
trunk/kernel/devices/dev_mmc.h
r440 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 #include <spinlock.h> 30 30 -
trunk/kernel/devices/dev_nic.c
r438 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_special.h> 26 26 #include <printk.h> -
trunk/kernel/devices/dev_nic.h
r437 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 30 30 /***************************************************************************************** -
trunk/kernel/devices/dev_pic.c
r438 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_special.h> 26 26 #include <chdev.h> … … 179 179 uint32_t cycle = (uint32_t)hal_get_cycles(); 180 180 if( DEBUG_DEV_PIC < cycle ) 181 printk("\n[DBG] %s : src_core[%x,%d] / dst_core[%x,%d] / cycle %d\n",182 __FUNCTION__, local_cxy, CURRENT_THREAD->core->lid, cxy, lid, cycle );181 printk("\n[DBG] %s : thread %x in process %x / tgt_core[%x,%d] / cycle %d\n", 182 __FUNCTION__, CURRENT_THREAD->trdid, CURRENT_THREAD->process->pid, cxy, lid, cycle ); 183 183 #endif 184 184 -
trunk/kernel/devices/dev_pic.h
r437 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 30 30 /***************************************************************************************** -
trunk/kernel/devices/dev_txt.c
r438 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_special.h> 26 26 #include <hal_remote.h> -
trunk/kernel/devices/dev_txt.h
r435 r457 26 26 27 27 #include <kernel_config.h> 28 #include <hal_ types.h>28 #include <hal_kernel_types.h> 29 29 #include <xlist.h> 30 30 #include <remote_spinlock.h>
Note: See TracChangeset
for help on using the changeset viewer.