mirror of
https://github.com/ipxe/ipxe
synced 2025-12-11 14:03:29 +03:00
Use NIC's connect method.
This commit is contained in:
@@ -236,9 +236,15 @@ struct nic *nic = &dev.nic;
|
||||
/*
|
||||
* Find out what our boot parameters are
|
||||
*/
|
||||
static int nic_load_configuration(struct dev *dev __unused)
|
||||
{
|
||||
static int nic_load_configuration ( struct dev *dev ) {
|
||||
struct nic *nic = &dev->nic;
|
||||
int server_found;
|
||||
|
||||
if ( ! nic->nic_op->connect ( nic ) ) {
|
||||
printf ( "No connection to network\n" );
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Find a server to get BOOTP reply from */
|
||||
#ifdef RARP_NOT_BOOTP
|
||||
printf("Searching for server (RARP)...");
|
||||
|
||||
Reference in New Issue
Block a user