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


Ignore:
Timestamp:
2011-05-12T16:49:44Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36787d7
Parents:
e80329d6 (diff), 750636a (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

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

    re80329d6 rb5e68c8  
    4141#include <bool.h>
    4242
     43extern int devman_get_phone(devman_interface_t, unsigned int);
     44extern void devman_hangup_phone(devman_interface_t);
    4345
    44 int devman_get_phone(devman_interface_t, unsigned int);
    45 void devman_hangup_phone(devman_interface_t iface);
     46extern int devman_driver_register(const char *, async_client_conn_t);
     47extern int devman_add_function(const char *, fun_type_t, match_id_list_t *,
     48    devman_handle_t, devman_handle_t *);
    4649
    47 int 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 *);
     50extern int devman_device_connect(devman_handle_t, unsigned int);
     51extern int devman_parent_device_connect(devman_handle_t, unsigned int);
    4952
    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);
     53extern int devman_device_get_handle(const char *, devman_handle_t *,
     54    unsigned int);
     55extern int devman_device_get_handle_by_class(const char *, const char *,
     56    devman_handle_t *, unsigned int);
    5257
    53 int devman_device_get_handle(const char *pathname, device_handle_t *handle, unsigned int flags);
    54 
    55 int devman_add_device_to_class(device_handle_t dev_handle, const char *class_name);
     58extern int devman_add_device_to_class(devman_handle_t, const char *);
    5659
    5760#endif
Note: See TracChangeset for help on using the changeset viewer.