Changes in uspace/drv/block/isa-ide/isa-ide.c [07039850:a796812c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/isa-ide/isa-ide.c
r07039850 ra796812c 101 101 ata_params_t params; 102 102 103 ddf_msg(LVL_DEBUG, "isa_ide_c hannel_init()");103 ddf_msg(LVL_DEBUG, "isa_ide_ctrl_init()"); 104 104 105 105 memset(¶ms, 0, sizeof(params)); … … 135 135 irq_inited = true; 136 136 137 ddf_msg(LVL_DEBUG, "isa_ide_c hannel_init(): Initialize IDE channel");137 ddf_msg(LVL_DEBUG, "isa_ide_ctrl_init(): Initialize IDE channel"); 138 138 139 139 params.arg = (void *)chan; … … 163 163 goto error; 164 164 165 ddf_msg(LVL_DEBUG, "isa_ide_c hannel_init: DONE");165 ddf_msg(LVL_DEBUG, "isa_ide_ctrl_init: DONE"); 166 166 return EOK; 167 167 error: … … 181 181 errno_t rc; 182 182 183 ddf_msg(LVL_DEBUG, ": isa_ide_c hannel_fini()");183 ddf_msg(LVL_DEBUG, ": isa_ide_ctrl_remove()"); 184 184 185 185 fibril_mutex_lock(&chan->lock); … … 196 196 197 197 return EOK; 198 }199 200 /** Quiesce ISA IDE channel. */201 void isa_ide_channel_quiesce(isa_ide_channel_t *chan)202 {203 ddf_msg(LVL_DEBUG, ": isa_ide_channel_quiesce()");204 205 fibril_mutex_lock(&chan->lock);206 ata_channel_quiesce(chan->channel);207 fibril_mutex_unlock(&chan->lock);208 198 } 209 199
Note:
See TracChangeset
for help on using the changeset viewer.