diff options
author | Pyun YongHyeon <yongari@FreeBSD.org> | 2012-10-08 07:01:07 +0000 |
---|---|---|
committer | Pyun YongHyeon <yongari@FreeBSD.org> | 2012-10-08 07:01:07 +0000 |
commit | 9dd3fa374aaafffc9ca5fe46ccf4b8c54a5530fa (patch) | |
tree | e7d31c58da5a408e720106bb937be31ea6e8eefb /sys/dev/ale | |
parent | 3e6cc97fd6b06c860ee35ab8489ffc9c27c69e88 (diff) |
Fix typo. Check against number of allocated MSI-X vectors.
There is no ale(4) controller that supports MSI-X so this is not
real issue.
PR: kern/171825
Notes
Notes:
svn path=/head/; revision=241340
Diffstat (limited to 'sys/dev/ale')
-rw-r--r-- | sys/dev/ale/if_ale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ale/if_ale.c b/sys/dev/ale/if_ale.c index 78c0b4eeaa3a..665fe56260f0 100644 --- a/sys/dev/ale/if_ale.c +++ b/sys/dev/ale/if_ale.c @@ -551,7 +551,7 @@ ale_attach(device_t dev) if (msix_disable == 0 || msi_disable == 0) { if (msix_disable == 0 && msixc == ALE_MSIX_MESSAGES && pci_alloc_msix(dev, &msixc) == 0) { - if (msic == ALE_MSIX_MESSAGES) { + if (msixc == ALE_MSIX_MESSAGES) { device_printf(dev, "Using %d MSIX messages.\n", msixc); sc->ale_flags |= ALE_FLAG_MSIX; |