Changeset d6b1359 in mainline for uspace/drv/isa/isa.c
- Timestamp:
- 2011-01-09T18:00:14Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 80bffdb0
- Parents:
- 0c70f7e (diff), 8871dba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/isa/isa.c
r0c70f7e rd6b1359 51 51 52 52 #include <driver.h> 53 #include < resource.h>53 #include <ops/hw_res.h> 54 54 55 55 #include <devman.h> … … 84 84 } 85 85 86 static resource_iface_t isa_child_res_iface= {86 static hw_res_ops_t isa_child_hw_res_ops = { 87 87 &isa_get_child_resources, 88 88 &isa_enable_child_interrupt … … 502 502 static void isa_init() 503 503 { 504 isa_child_dev_ops.interfaces[HW_RES_DEV_IFACE] = &isa_child_ res_iface;504 isa_child_dev_ops.interfaces[HW_RES_DEV_IFACE] = &isa_child_hw_res_ops; 505 505 } 506 506
Note:
See TracChangeset
for help on using the changeset viewer.