[device] Make driver name a generic device property

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown
2011-04-07 20:59:47 +01:00
parent 6e6ecacebf
commit fc7e2be617
12 changed files with 14 additions and 16 deletions

View File

@@ -63,8 +63,8 @@ static int eisa_probe ( struct eisa_device *eisa ) {
ISA_PROD_ID ( eisa->prod_id ) )
continue;
eisa->driver = driver;
eisa->driver_name = id->name;
DBG ( "...using driver %s\n", eisa->driver_name );
eisa->dev.driver_name = id->name;
DBG ( "...using driver %s\n", eisa->dev.driver_name );
if ( ( rc = driver->probe ( eisa, id ) ) != 0 ) {
DBG ( "......probe failed\n" );
continue;