Skip to content

Commit

Permalink
s390/qdio: correct program-controlled interruption checking
Browse files Browse the repository at this point in the history
Get rid of compile warning in qdio_int_handler_pci() when checking
for program-controlled interruption on outbound queues.

Signed-off-by: Ursula Braun <[email protected]>
Reviewed-by: Heiko Carstens <[email protected]>
Signed-off-by: Martin Schwidefsky <[email protected]>
  • Loading branch information
braunu authored and Martin Schwidefsky committed Jan 29, 2014
1 parent dbb0dd0 commit 0f308f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/s390/cio/qdio_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ static void qdio_int_handler_pci(struct qdio_irq *irq_ptr)
}
}

if (!pci_out_supported(q))
if (!(irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED))
return;

for_each_output_queue(irq_ptr, q, i) {
Expand Down

0 comments on commit 0f308f4

Please sign in to comment.