Changeset e950803 in mainline for uspace/srv/devmap/devmap.c


Ignore:
Timestamp:
2011-02-03T20:20:01Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bfe43d5a
Parents:
bd81386 (diff), b366a1bc (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 from lp:~jakub/helenos/fs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/devmap/devmap.c

    rbd81386 re950803  
    423423         */
    424424        list_initialize(&driver->devices);
    425         list_initialize(&(driver->drivers));
     425
     426        link_initialize(&driver->drivers);
    426427       
    427428        fibril_mutex_lock(&drivers_list_mutex);
     
    538539        }
    539540       
    540         list_initialize(&(device->devices));
    541         list_initialize(&(device->driver_devices));
     541        link_initialize(&device->devices);
     542        link_initialize(&device->driver_devices);
    542543       
    543544        /* Check that device is not already registered */
     
    942943        }
    943944       
    944         list_initialize(&(device->devices));
    945         list_initialize(&(device->driver_devices));
     945        link_initialize(&device->devices);
     946        link_initialize(&device->driver_devices);
    946947       
    947948        /* Get unique device handle */
Note: See TracChangeset for help on using the changeset viewer.