Changes in uspace/drv/isa/isa.c [41b56084:7e752b2] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/isa/isa.c
r41b56084 r7e752b2 51 51 52 52 #include <driver.h> 53 #include < ops/hw_res.h>53 #include <resource.h> 54 54 55 55 #include <devman.h> … … 84 84 } 85 85 86 static hw_res_ops_t isa_child_hw_res_ops= {86 static resource_iface_t isa_child_res_iface = { 87 87 &isa_get_child_resources, 88 88 &isa_enable_child_interrupt … … 282 282 283 283 printf(NAME ": added io range (addr=0x%x, size=0x%x) to " 284 "device %s\n", (unsigned int) addr, (unsigned int) len, 285 dev->name); 284 "device %s\n", addr, len, dev->name); 286 285 } 287 286 } … … 490 489 static int isa_add_device(device_t *dev) 491 490 { 492 printf(NAME ": isa_add_device, device handle = %d\n", 493 (int) dev->handle); 491 printf(NAME ": isa_add_device, device handle = %d\n", dev->handle); 494 492 495 493 /* Add child devices. */ … … 502 500 static void isa_init() 503 501 { 504 isa_child_dev_ops.interfaces[HW_RES_DEV_IFACE] = &isa_child_ hw_res_ops;502 isa_child_dev_ops.interfaces[HW_RES_DEV_IFACE] = &isa_child_res_iface; 505 503 } 506 504
Note:
See TracChangeset
for help on using the changeset viewer.