Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 731fd79c authored by Matt Carlson's avatar Matt Carlson Committed by David S. Miller
Browse files

tg3: Refine APE status check



Recently, more status bits have been added to the APE status register.
This patch refines the status register check so that the driver can
send more events than it would have otherwise.

Signed-off-by: default avatarMatt Carlson <mcarlson@broadcom.com>
Signed-off-by: default avatarMichael Chan <mchan@broadcom.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 77b483f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5495,7 +5495,7 @@ static void tg3_ape_send_event(struct tg3 *tp, u32 event)
		return;

	apedata = tg3_ape_read32(tp, TG3_APE_FW_STATUS);
	if (apedata != APE_FW_STATUS_READY)
	if (!(apedata & APE_FW_STATUS_READY))
		return;

	/* Wait for up to 1 millisecond for APE to service previous event. */