mirror of
https://github.com/ipxe/ipxe
synced 2026-02-28 03:11:18 +03:00
Added "name" field to struct bus_driver
This commit is contained in:
@@ -291,7 +291,7 @@ static int t509_check_driver ( struct bus_dev *bus_dev __unused,
|
|||||||
* Describe a T509 device
|
* Describe a T509 device
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static char * t509_describe ( struct bus_dev *bus_dev ) {
|
static char * t509_describe_device ( struct bus_dev *bus_dev ) {
|
||||||
struct t509_device *t509 = ( struct t509_device * ) bus_dev;
|
struct t509_device *t509 = ( struct t509_device * ) bus_dev;
|
||||||
static char t509_description[] = "T509 00";
|
static char t509_description[] = "T509 00";
|
||||||
|
|
||||||
@@ -303,7 +303,7 @@ static char * t509_describe ( struct bus_dev *bus_dev ) {
|
|||||||
* Name a T509 device
|
* Name a T509 device
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static const char * t509_name ( struct bus_dev *bus_dev __unused ) {
|
static const char * t509_name_device ( struct bus_dev *bus_dev __unused ) {
|
||||||
return "T509";
|
return "T509";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -312,11 +312,12 @@ static const char * t509_name ( struct bus_dev *bus_dev __unused ) {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
static struct bus_driver t509_driver __bus_driver = {
|
static struct bus_driver t509_driver __bus_driver = {
|
||||||
|
.name = "T509",
|
||||||
.next_location = t509_next_location,
|
.next_location = t509_next_location,
|
||||||
.fill_device = t509_fill_device,
|
.fill_device = t509_fill_device,
|
||||||
.check_driver = t509_check_driver,
|
.check_driver = t509_check_driver,
|
||||||
.describe = t509_describe,
|
.describe_device = t509_describe_device,
|
||||||
.name = t509_name,
|
.name_device = t509_name_device,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
Reference in New Issue
Block a user