mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Oops, fix logic error introduced in r230337.
This commit is contained in:
parent
2ae7f64b45
commit
d9fc28e40d
1 changed files with 1 additions and 1 deletions
|
|
@ -2745,7 +2745,7 @@ bge_can_use_msi(struct bge_softc *sc)
|
|||
{
|
||||
int can_use_msi = 0;
|
||||
|
||||
if (sc->bge_msi != 0)
|
||||
if (sc->bge_msi == 0)
|
||||
return (0);
|
||||
|
||||
/* Disable MSI for polling(4). */
|
||||
|
|
|
|||
Loading…
Reference in a new issue