Commit 8d08be92 authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky

[S390] qdio: Remove double checked value.

Signed-off-by: default avatarSebastian Ott <sebott@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 90ab1336
...@@ -1408,8 +1408,7 @@ __tiqdio_inbound_processing(struct qdio_q *q, int spare_ind_was_set) ...@@ -1408,8 +1408,7 @@ __tiqdio_inbound_processing(struct qdio_q *q, int spare_ind_was_set)
if (q->hydra_gives_outbound_pcis) { if (q->hydra_gives_outbound_pcis) {
if (!q->siga_sync_done_on_thinints) { if (!q->siga_sync_done_on_thinints) {
SYNC_MEMORY_ALL; SYNC_MEMORY_ALL;
} else if ((!q->siga_sync_done_on_outb_tis)&& } else if (!q->siga_sync_done_on_outb_tis) {
(q->hydra_gives_outbound_pcis)) {
SYNC_MEMORY_ALL_OUTB; SYNC_MEMORY_ALL_OUTB;
} }
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment