Changeset 211 for trunk/kernel/devices
- Timestamp:
- Jul 17, 2017, 1:22:11 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/devices/dev_ioc.c
r207 r211 57 57 snprintf( ioc->name , 16 , "ioc_%d" , channel ); 58 58 59 // set driver specific fields in chdev descriptor andcall driver init function59 // call driver init function 60 60 if( impl == IMPL_IOC_BDV ) 61 61 { 62 ioc->cmd = &soclib_bdv_cmd;63 ioc->isr = &soclib_bdv_isr;64 62 soclib_bdv_init( ioc ); 65 63 } 66 64 else if( impl == IMPL_IOC_HBA ) 67 65 { 68 ioc->cmd = &soclib_hba_cmd;69 ioc->isr = &soclib_hba_isr;70 66 soclib_hba_init( ioc ); 71 67 }
Note: See TracChangeset
for help on using the changeset viewer.