[PATCH 03/17] hpsa: Fix vendor id check

From: Stephen M. Cameron
Date: Wed Nov 11 2009 - 11:52:51 EST


hpsa: Fix vendor id check

Signed-off-by: Stephen M. Cameron <scameron@xxxxxxxxxxxxxxxxxx>
---

drivers/scsi/hpsa.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
index 186f9a2..6c4d9fd 100644
--- a/drivers/scsi/hpsa.c
+++ b/drivers/scsi/hpsa.c
@@ -3080,7 +3080,7 @@ static int hpsa_pci_init(struct ctlr_info *h, struct pci_dev *pdev)

if (prod_index == ARRAY_SIZE(products)) {
prod_index--;
- if (subsystem_vendor_id == !PCI_VENDOR_ID_HP ||
+ if (subsystem_vendor_id != PCI_VENDOR_ID_HP ||
!hpsa_allow_any) {
dev_warn(&pdev->dev, "unrecognized board ID:"
" 0x%08lx, ignoring.\n",

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/