david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

s/{name,describe}/{name,describe}_device/

This commit is contained in:
Michael Brown 2005-04-25 19:27:53 +00:00
parent 3b14360f5c
commit 8cd0693396
1 changed files with 5 additions and 4 deletions

View File

@ -190,9 +190,9 @@ int main ( void ) {
/* Print out what we're doing */ /* Print out what we're doing */
printf ( "Booting from %s %s at %s " printf ( "Booting from %s %s at %s "
"using the %s driver\n", "using the %s driver\n",
dev.bus_driver->name ( &dev.bus_dev ), dev.bus_driver->name_device ( &dev.bus_dev ),
dev.type_driver->name, dev.type_driver->name,
dev.bus_driver->describe ( &dev.bus_dev ), dev.bus_driver->describe_device ( &dev.bus_dev ),
dev.device_driver->name ); dev.device_driver->name );
/* Probe boot device */ /* Probe boot device */
@ -202,8 +202,9 @@ int main ( void ) {
continue; continue;
} }
printf ( "%s: %s\n", dev.bus_driver->name ( &dev.bus_dev ), printf ( "%s: %s\n",
dev.type_driver->describe ( dev.type_dev ) ); dev.bus_driver->name_device ( &dev.bus_dev ),
dev.type_driver->describe_device ( dev.type_dev ) );
} }
/* Call registered per-object exit functions */ /* Call registered per-object exit functions */