sim-card
/
qemu
Archived
10
0
Fork 0

eepro100: Add diagnose command

Real hardware would run an internal self-test.
The emulation just returns a passed status.

Original patch was from Reimar Döffinger, thanks.

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
Stefan Weil 2010-03-02 22:37:58 +01:00 committed by Michael S. Tsirkin
parent 3d0f4b9bb5
commit f80a7fc34e
1 changed files with 5 additions and 0 deletions

View File

@ -958,6 +958,11 @@ static void action_command(EEPRO100State *s)
/* Starting with offset 8, the command contains
* 64 dwords microcode which we just ignore here. */
break;
case CmdDiagnose:
TRACE(OTHER, logout("diagnose\n"));
/* Make sure error flag is not set. */
s->tx.status = 0;
break;
default:
missing("undefined command");
success = false;