Changeset 213
- Timestamp:
- Jul 17, 2017, 1:29:41 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/generic/hal_drivers.h
r190 r213 34 34 void hal_drivers_pic_init(chdev_t *dev); 35 35 36 void hal_drivers_ioc_init(chdev_t *dev); 37 36 38 #endif /* HAL_DRIVERS_H_ */ 37 39 -
trunk/hal/tsar_mips32/core/hal_drivers.c
r198 r213 67 67 dev->ext.pic.extend_init = &soclib_pic_extend_init; 68 68 } 69 70 /* -------------------------------------------------------------------------- */ 71 72 void hal_drivers_ioc_init(chdev_t *dev) 73 { 74 soclib_bdv_init(dev); 75 } 76 -
trunk/hal/x86_64/core/hal_drivers.c
r198 r213 68 68 } 69 69 70 /* -------------------------------------------------------------------------- */ 71 72 void hal_drivers_ioc_init(chdev_t *dev) 73 { 74 soclib_bdv_init(dev); 75 } 76 -
trunk/kernel/devices/dev_ioc.c
r212 r213 25 25 #include <hal_types.h> 26 26 #include <hal_gpt.h> 27 #include < soclib_bdv.h>27 #include <hal_drivers.h> 28 28 #include <soclib_hba.h> 29 29 #include <thread.h> … … 57 57 if( impl == IMPL_IOC_BDV ) 58 58 { 59 soclib_bdv_init( ioc );59 hal_drivers_ioc_init( ioc ); 60 60 } 61 61 else if( impl == IMPL_IOC_HBA )
Note: See TracChangeset
for help on using the changeset viewer.