From: Juan Quintela Date: Wed, 7 Oct 2009 16:18:20 +0000 (+0200) Subject: ide: microdrive cycle field is set as uint8_t X-Git-Tag: TizenStudio_2.0_p2.3~6930 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5507440f11fb93c28ed891c59ccc81995b5766d;p=sdk%2Femulator%2Fqemu.git ide: microdrive cycle field is set as uint8_t Really, it is used as a boolean Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- diff --git a/hw/ide/microdrive.c b/hw/ide/microdrive.c index aeb77a0..49a9b93 100644 --- a/hw/ide/microdrive.c +++ b/hw/ide/microdrive.c @@ -51,7 +51,7 @@ typedef struct { uint8_t ctrl; uint16_t io; - int cycle; + uint8_t cycle; } MicroDriveState; /* Register bitfields */