Changes in uspace/drv/block/pci-ide/pci-ide.c [145d4e2e:07039850] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/pci-ide/pci-ide.c
r145d4e2e r07039850 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2025 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 189 189 190 190 ddf_msg(LVL_DEBUG, "pci_ide_channel_init()"); 191 192 memset(¶ms, 0, sizeof(params)); 191 193 192 194 chan->ctrl = ctrl; … … 329 331 } 330 332 333 /** Quiesce PCI IDE channel. */ 334 void pci_ide_channel_quiesce(pci_ide_channel_t *chan) 335 { 336 ddf_msg(LVL_DEBUG, ": pci_ide_channel_quiesce()"); 337 338 fibril_mutex_lock(&chan->lock); 339 ata_channel_quiesce(chan->channel); 340 fibril_mutex_unlock(&chan->lock); 341 } 342 331 343 /** Enable device I/O. */ 332 344 static errno_t pci_ide_init_io(pci_ide_channel_t *chan)
Note:
See TracChangeset
for help on using the changeset viewer.