Changeset 3842a955 in mainline for uspace/srv/devman/devman.h


Ignore:
Timestamp:
2011-06-19T15:59:42Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
26e7d6d
Parents:
9724d7f (diff), 74464e8 (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/srv/devman/devman.h

    r9724d7f r3842a955  
    9696        /** List of device ids for device-to-driver matching. */
    9797        match_id_list_t match_ids;
    98         /** Pointer to the linked list of devices controlled by this driver. */
    99         link_t devices;
     98        /** List of devices controlled by this driver. */
     99        list_t devices;
    100100       
    101101        /**
     
    108108typedef struct driver_list {
    109109        /** List of drivers */
    110         link_t drivers;
     110        list_t drivers;
    111111        /** Fibril mutex for list of drivers. */
    112112        fibril_mutex_t drivers_mutex;
     
    130130       
    131131        /** List of device functions. */
    132         link_t functions;
     132        list_t functions;
    133133        /** Driver of this device. */
    134134        driver_t *drv;
     
    170170        match_id_list_t match_ids;
    171171       
    172         /** The list of device classes to which this device function belongs. */
    173         link_t classes;
     172        /** List of device classes to which this device function belongs. */
     173        list_t classes;
    174174        /** Devmap handle if the device function is registered by devmap. */
    175175        devmap_handle_t devmap_handle;
     
    228228         * this class.
    229229         */
    230         link_t devices;
     230        list_t devices;
    231231       
    232232        /**
     
    280280typedef struct class_list {
    281281        /** List of classes. */
    282         link_t classes;
     282        list_t classes;
    283283       
    284284        /**
Note: See TracChangeset for help on using the changeset viewer.