|
| From: | Anthony Liguori |
| Subject: | Re: [Qemu-devel] [PATCH] Implement the trivial diagnose CU and RU abort commands. These are necessary to make the device work with OpenSolaris 0609 (111b). |
| Date: | Mon, 05 Oct 2009 08:24:08 -0500 |
| User-agent: | Thunderbird 2.0.0.23 (X11/20090825) |
Reimar Döffinger wrote:
Signed-off-by: Reimar Döffinger <address@hidden>
---
hw/eepro100.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/hw/eepro100.c b/hw/eepro100.c
index 2099459..7c951c0 100644
--- a/hw/eepro100.c
+++ b/hw/eepro100.c
@@ -771,6 +771,10 @@ static void eepro100_cu_command(EEPRO100State * s, uint8_t
val)
/* Starting with offset 8, the command contains
* 64 dwords microcode which we just ignore here. */
break;
+ case CmdDiagnose:
+ logout("diagnose\n");
+ status = 0; // make sure error flag is not set
Please avoid introducing C99 comments. Also keep the first sentence of the description concise and < 80 characters.
Regards, Anthony Liguori
| [Prev in Thread] | Current Thread | [Next in Thread] |