Phase 3 (Network and SCSI).

This commit is contained in:
OBattler
2022-04-04 18:16:53 +02:00
parent 8714f79693
commit 1a99a7cc6a
2 changed files with 2 additions and 2 deletions

View File

@@ -630,7 +630,7 @@ network_card_has_config(int card)
{ {
if (! net_cards[card].device) return(0); if (! net_cards[card].device) return(0);
return(net_cards[card].device->config ? 1 : 0); return(device_has_config(net_cards[card].device) ? 1 : 0);
} }

View File

@@ -153,7 +153,7 @@ scsi_card_has_config(int card)
{ {
if (! scsi_cards[card].device) return(0); if (! scsi_cards[card].device) return(0);
return(scsi_cards[card].device->config ? 1 : 0); return(device_had_config(scsi_cards[card].device) ? 1 : 0);
} }