Changeset 545 for trunk/kernel/kern/chdev.c
- Timestamp:
- Sep 21, 2018, 10:23:06 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/chdev.c
r527 r545 456 456 457 457 // IOB 458 cxy = GET_CXY( chdev_dir.iob ); 459 ptr = GET_PTR( chdev_dir.iob ); 460 base = (uint32_t)hal_remote_lwd( XPTR( cxy , &ptr->base ) ); 461 nolock_printk(" - iob : cxy = %X / ptr = %X / base = %X\n", cxy, ptr, base); 458 if (chdev_dir.iob != NULL ) 459 { 460 cxy = GET_CXY( chdev_dir.iob ); 461 ptr = GET_PTR( chdev_dir.iob ); 462 base = (uint32_t)hal_remote_lwd( XPTR( cxy , &ptr->base ) ); 463 nolock_printk(" - iob : cxy = %X / ptr = %X / base = %X\n", cxy, ptr, base); 464 } 462 465 463 466 // PIC
Note: See TracChangeset
for help on using the changeset viewer.