Changeset d51838f in mainline for uspace/drv/block/ahci/ahci.c
- Timestamp:
- 2017-10-14T22:49:18Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75911d24
- Parents:
- ce732e74
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/block/ahci/ahci.c
rce732e74 rd51838f 36 36 #include <ddf/interrupt.h> 37 37 #include <ddf/log.h> 38 #include <device/hw_res.h> 38 39 #include <device/hw_res_parsed.h> 39 40 #include <pci_dev_iface.h> 40 #include <irc.h>41 41 #include <ahci_iface.h> 42 42 #include "ahci.h" … … 1192 1192 } 1193 1193 1194 int rc = irc_enable_interrupt(hw_res_parsed.irqs.irqs[0]); 1194 int rc = hw_res_enable_interrupt(ahci->parent_sess, 1195 hw_res_parsed.irqs.irqs[0]); 1195 1196 if (rc != EOK) { 1196 1197 ddf_msg(LVL_ERROR, "Failed enable interupt.");
Note:
See TracChangeset
for help on using the changeset viewer.