Changes in uspace/drv/bus/isa/isa.c [5b68e0c:ef9460b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/isa/isa.c
r5b68e0c ref9460b 96 96 97 97 static int isa_add_device(ddf_dev_t *dev); 98 static int isa_fun_online(ddf_fun_t *fun);99 static int isa_fun_offline(ddf_fun_t *fun);100 98 101 99 /** The isa device driver's standard operations */ 102 100 static driver_ops_t isa_ops = { 103 .add_device = &isa_add_device, 104 .fun_online = &isa_fun_online, 105 .fun_offline = &isa_fun_offline 101 .add_device = &isa_add_device 106 102 }; 107 103 … … 499 495 } 500 496 501 static int isa_fun_online(ddf_fun_t *fun)502 {503 ddf_msg(LVL_DEBUG, "isa_fun_online()");504 return ddf_fun_online(fun);505 }506 507 static int isa_fun_offline(ddf_fun_t *fun)508 {509 ddf_msg(LVL_DEBUG, "isa_fun_offline()");510 return ddf_fun_offline(fun);511 }512 513 514 497 static void isa_init() 515 498 {
Note:
See TracChangeset
for help on using the changeset viewer.