lsi: Fix unused-but-set-variable warning
This warning is new in gcc 4.6. Signed-off-by: Christophe Fergeau <cfergeau@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
eb47d7c5d9
commit
bf79d49982
@ -889,7 +889,6 @@ static void lsi_do_msgout(LSIState *s)
|
|||||||
uint8_t msg;
|
uint8_t msg;
|
||||||
int len;
|
int len;
|
||||||
uint32_t current_tag;
|
uint32_t current_tag;
|
||||||
SCSIDevice *current_dev;
|
|
||||||
lsi_request *current_req, *p, *p_next;
|
lsi_request *current_req, *p, *p_next;
|
||||||
int id;
|
int id;
|
||||||
|
|
||||||
@ -901,7 +900,6 @@ static void lsi_do_msgout(LSIState *s)
|
|||||||
current_req = lsi_find_by_tag(s, current_tag);
|
current_req = lsi_find_by_tag(s, current_tag);
|
||||||
}
|
}
|
||||||
id = (current_tag >> 8) & 0xf;
|
id = (current_tag >> 8) & 0xf;
|
||||||
current_dev = s->bus.devs[id];
|
|
||||||
|
|
||||||
DPRINTF("MSG out len=%d\n", s->dbc);
|
DPRINTF("MSG out len=%d\n", s->dbc);
|
||||||
while (s->dbc) {
|
while (s->dbc) {
|
||||||
|
Loading…
Reference in New Issue
Block a user