[PATCH 1/4] misc: hpilo: Be more specific when ignoring the aux iLO

From: Matt Hsiao
Date: Thu Feb 21 2019 - 03:10:23 EST


Be more specific with the subsystem_vendor id used before iLO5

Signed-off-by: Matt Hsiao <matt.hsiao@xxxxxxx>
---
drivers/misc/hpilo.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/hpilo.c b/drivers/misc/hpilo.c
index e9c9ef5..01c407a 100644
--- a/drivers/misc/hpilo.c
+++ b/drivers/misc/hpilo.c
@@ -763,8 +763,9 @@ static int ilo_probe(struct pci_dev *pdev,
int devnum, minor, start, error = 0;
struct ilo_hwinfo *ilo_hw;

- /* Ignore subsystem_device = 0x1979 (set by BIOS) */
- if (pdev->subsystem_device == 0x1979)
+ /* Ignore auxiliary iLO device */
+ if (pdev->subsystem_vendor == PCI_VENDOR_ID_HP &&
+ pdev->subsystem_device == 0x1979)
return 0;

if (max_ccb > MAX_CCB)
--
1.8.3.1