Changeset 0c3666d in mainline for uspace/srv/devman/main.c
- Timestamp:
- 2010-02-19T14:51:15Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 924c75e1
- Parents:
- e85920d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/main.c
re85920d r0c3666d 56 56 #define DRIVER_DEFAULT_STORE "/srv/drivers" 57 57 58 LIST_INITIALIZE(drivers_list);58 static driver_list_t drivers_list; 59 59 static dev_tree_t device_tree; 60 60 … … 92 92 static bool devman_init() 93 93 { 94 printf(NAME ": devman_init - looking for available drivers. \n"); 94 printf(NAME ": devman_init - looking for available drivers. \n"); 95 95 96 96 // initialize list of available drivers 97 init_driver_list(&drivers_list); 97 98 if (0 == lookup_available_drivers(&drivers_list, DRIVER_DEFAULT_STORE)) { 98 99 printf(NAME " no drivers found."); … … 110 111 } 111 112 112 /**113 *114 */115 113 int main(int argc, char *argv[]) 116 114 {
Note:
See TracChangeset
for help on using the changeset viewer.