e1000e: Fix PBACLR implementation

This patch fixes incorrect check for
interrypt type being used.

PBSCLR register is valid for MSI-X only.

See spec. 10.2.3.13 MSI—X PBA Clear

Signed-off-by: Dmitry Fleytman <dmitry@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
master
Dmitry Fleytman 2016-09-15 09:14:27 +03:00 committed by Jason Wang
parent 2d803144a6
commit 680e60b6ba
1 changed files with 1 additions and 1 deletions

View File

@ -2347,7 +2347,7 @@ e1000e_set_pbaclr(E1000ECore *core, int index, uint32_t val)
core->mac[PBACLR] = val & E1000_PBACLR_VALID_MASK;
if (msix_enabled(core->owner)) {
if (!msix_enabled(core->owner)) {
return;
}