mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 00:24:59 +00:00
usb-ehci: drop unused isoch_pause variable
Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
afb9a60ecb
commit
fcb70eca3f
@ -419,7 +419,6 @@ struct EHCIState {
|
|||||||
|
|
||||||
USBPacket ipacket;
|
USBPacket ipacket;
|
||||||
QEMUSGList isgl;
|
QEMUSGList isgl;
|
||||||
int isoch_pause;
|
|
||||||
|
|
||||||
uint64_t last_run_ns;
|
uint64_t last_run_ns;
|
||||||
};
|
};
|
||||||
@ -907,7 +906,6 @@ static void ehci_reset(void *opaque)
|
|||||||
|
|
||||||
s->astate = EST_INACTIVE;
|
s->astate = EST_INACTIVE;
|
||||||
s->pstate = EST_INACTIVE;
|
s->pstate = EST_INACTIVE;
|
||||||
s->isoch_pause = -1;
|
|
||||||
s->attach_poll_counter = 0;
|
s->attach_poll_counter = 0;
|
||||||
|
|
||||||
for(i = 0; i < NB_PORTS; i++) {
|
for(i = 0; i < NB_PORTS; i++) {
|
||||||
@ -2150,9 +2148,7 @@ static void ehci_frame_timer(void *opaque)
|
|||||||
|
|
||||||
for (i = 0; i < frames; i++) {
|
for (i = 0; i < frames; i++) {
|
||||||
if ( !(ehci->usbsts & USBSTS_HALT)) {
|
if ( !(ehci->usbsts & USBSTS_HALT)) {
|
||||||
if (ehci->isoch_pause <= 0) {
|
|
||||||
ehci->frindex += 8;
|
ehci->frindex += 8;
|
||||||
}
|
|
||||||
|
|
||||||
if (ehci->frindex > 0x00001fff) {
|
if (ehci->frindex > 0x00001fff) {
|
||||||
ehci->frindex = 0;
|
ehci->frindex = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user