Some cleanup I made before the integration.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25545 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -13,9 +13,9 @@
|
|||||||
|
|
||||||
/* type of I/O resource */
|
/* type of I/O resource */
|
||||||
enum {
|
enum {
|
||||||
IO_MEM = 1,
|
B_IO_MEMORY = 1,
|
||||||
IO_PORT = 2,
|
B_IO_PORT = 2,
|
||||||
ISA_DMA_CHANNEL = 3
|
B_ISA_DMA_CHANNEL = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@@ -124,7 +124,10 @@ struct driver_module_info {
|
|||||||
void (*uninit_driver)(void *driverCookie);
|
void (*uninit_driver)(void *driverCookie);
|
||||||
status_t (*register_child_devices)(void *driverCookie);
|
status_t (*register_child_devices)(void *driverCookie);
|
||||||
status_t (*rescan_child_devices)(void *driverCookie);
|
status_t (*rescan_child_devices)(void *driverCookie);
|
||||||
|
|
||||||
void (*device_removed)(void *driverCookie);
|
void (*device_removed)(void *driverCookie);
|
||||||
|
status_t (*suspend)(void *driverCookie, int32 state);
|
||||||
|
status_t (*resume)(void *driverCookie);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user