Parcourir la source

Kill off PXENV_UNDI_FORCE_INTERRUPT support; we have no reason to

suspect that we need it, and implementing it would require needlessly
complicating the net device API.
tags/v0.9.3
Michael Brown il y a 17 ans
Parent
révision
1ce0b4bbfb
1 fichiers modifiés avec 4 ajouts et 7 suppressions
  1. 4
    7
      src/interface/pxe/pxe_undi.c

+ 4
- 7
src/interface/pxe/pxe_undi.c Voir le fichier

@@ -394,18 +394,15 @@ PXENV_EXIT_t pxenv_undi_initiate_diags ( struct s_PXENV_UNDI_INITIATE_DIAGS
394 394
 
395 395
 /* PXENV_UNDI_FORCE_INTERRUPT
396 396
  *
397
- * Status: working
397
+ * Status: won't implement (would require driver API changes for no
398
+ * perceptible benefit)
398 399
  */
399 400
 PXENV_EXIT_t pxenv_undi_force_interrupt ( struct s_PXENV_UNDI_FORCE_INTERRUPT
400 401
 					  *undi_force_interrupt ) {
401 402
 	DBG ( "PXENV_UNDI_FORCE_INTERRUPT" );
402 403
 
403
-#if 0
404
-	eth_irq ( FORCE );
405
-#endif
406
-
407
-	undi_force_interrupt->Status = PXENV_STATUS_SUCCESS;
408
-	return PXENV_EXIT_SUCCESS;
404
+	undi_force_interrupt->Status = PXENV_STATUS_UNSUPPORTED;
405
+	return PXENV_EXIT_FAILURE;
409 406
 }
410 407
 
411 408
 /* PXENV_UNDI_GET_MCAST_ADDRESS

Chargement…
Annuler
Enregistrer