Changeset 0b5a4131 in mainline for uspace/lib/c/include/devman.h


Ignore:
Timestamp:
2010-11-18T18:10:11Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c63e70c
Parents:
991f645
Message:

Rename device_handle_t to devman_handle_t and make it explicitly clear that
device_handle_t is a handle understood by devman.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/devman.h

    r991f645 r0b5a4131  
    4646
    4747int devman_driver_register(const char *, async_client_conn_t);
    48 int devman_child_device_register(const char *, match_id_list_t *, device_handle_t, device_handle_t *);
     48int devman_child_device_register(const char *, match_id_list_t *, devman_handle_t, devman_handle_t *);
    4949
    50 int devman_device_connect(device_handle_t handle, unsigned int flags);
    51 int devman_parent_device_connect(device_handle_t handle, unsigned int flags);
     50int devman_device_connect(devman_handle_t handle, unsigned int flags);
     51int devman_parent_device_connect(devman_handle_t handle, unsigned int flags);
    5252
    53 int devman_device_get_handle(const char *pathname, device_handle_t *handle, unsigned int flags);
     53int devman_device_get_handle(const char *pathname, devman_handle_t *handle, unsigned int flags);
    5454
    55 int devman_add_device_to_class(device_handle_t dev_handle, const char *class_name);
     55int devman_add_device_to_class(devman_handle_t devman_handle, const char *class_name);
    5656
    5757#endif
Note: See TracChangeset for help on using the changeset viewer.