Changeset cf2af94 in mainline for uspace/srv/devman/devman.h


Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (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

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devman/devman.h

    ra49c4002 rcf2af94  
    4040#include <adt/list.h>
    4141#include <adt/hash_table.h>
    42 #include <ipc/ipc.h>
    4342#include <ipc/devman.h>
    4443#include <ipc/devmap.h>
     
    8685       
    8786        /** Phone asociated with this driver. */
    88         ipcarg_t phone;
     87        sysarg_t phone;
    8988        /** Name of the device driver. */
    9089        char *name;
     
    168167         */
    169168        link_t devmap_link;
     169
     170        /**
     171         * Whether this device was already passed to the driver.
     172         */
     173        bool passed_to_driver;
    170174};
    171175
     
    297301
    298302extern driver_t *find_driver(driver_list_t *, const char *);
    299 extern void set_driver_phone(driver_t *, ipcarg_t);
     303extern void set_driver_phone(driver_t *, sysarg_t);
    300304extern void initialize_running_driver(driver_t *, dev_tree_t *);
    301305
Note: See TracChangeset for help on using the changeset viewer.