Home | History | Annotate | Download | only in bus

Lines Matching refs:driver

44  * Searches for a driver for the EISA device.  If a driver is found,
48 struct eisa_driver *driver;
57 for_each_table_entry ( driver, EISA_DRIVERS ) {
58 for ( i = 0 ; i < driver->id_count ; i++ ) {
59 id = &driver->ids[i];
65 eisa->driver = driver;
67 DBG ( "...using driver %s\n", eisa->driver_name );
68 if ( ( rc = driver->probe ( eisa, id ) ) != 0 ) {
76 DBG ( "...no driver found\n" );
86 eisa->driver->remove ( eisa );
136 /* Look for a driver */
172 /** EISA bus root device driver */
181 .driver = &eisa_root_driver,