Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/devman.c

    r64d2b10 r124c061  
    2828 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2929 */
    30 
    31 /** @addtogroup libc
     30 
     31 /** @addtogroup libc
    3232 * @{
    3333 */
     
    3737#include <str.h>
    3838#include <stdio.h>
     39#include <ipc/ipc.h>
    3940#include <ipc/services.h>
    4041#include <ipc/devman.h>
     
    115116        async_set_client_connection(conn);
    116117       
    117         async_connect_to_me(phone, 0, 0, 0, NULL);
     118        ipc_connect_to_me(phone, 0, 0, 0, NULL, NULL);
    118119        async_wait_for(req, &retval);
    119120       
     
    220221        case DEVMAN_DRIVER:
    221222                if (devman_phone_driver >= 0) {
    222                         async_hangup(devman_phone_driver);
     223                        ipc_hangup(devman_phone_driver);
    223224                        devman_phone_driver = -1;
    224225                }
     
    226227        case DEVMAN_CLIENT:
    227228                if (devman_phone_client >= 0) {
    228                         async_hangup(devman_phone_client);
     229                        ipc_hangup(devman_phone_client);
    229230                        devman_phone_client = -1;
    230231                }
Note: See TracChangeset for help on using the changeset viewer.