Changes in uspace/lib/drv/include/dev_iface.h [83a2f43:22027b6e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/include/dev_iface.h
r83a2f43 r22027b6e 36 36 #define LIBDRV_DEV_IFACE_H_ 37 37 38 #include <ipc/common.h>39 38 #include <ipc/dev_iface.h> 40 39 … … 43 42 */ 44 43 45 struct d df_fun;44 struct device; 46 45 47 46 /* … … 49 48 * devices driver. 50 49 */ 51 typedef void remote_iface_func_t(struct d df_fun*, void *, ipc_callid_t,50 typedef void remote_iface_func_t(struct device *, void *, ipc_callid_t, 52 51 ipc_call_t *); 53 52 typedef remote_iface_func_t *remote_iface_func_ptr_t; 54 typedef void remote_handler_t(struct d df_fun*, ipc_callid_t, ipc_call_t *);53 typedef void remote_handler_t(struct device *, ipc_callid_t, ipc_call_t *); 55 54 56 55 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.