lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 11 Nov 2009 10:50:38 -0600 From: "Stephen M. Cameron" <scameron@...rdog.cce.hp.com> To: akpm@...ux-foundation.org, James.Bottomley@...senPartnership.com Cc: linux-kernel@...r.kernel.org, linux-scsi@...r.kernel.org, scameron@...rdog.cce.hp.com, mikem@...rdog.cce.hp.com Subject: [PATCH 03/17] hpsa: Fix vendor id check hpsa: Fix vendor id check Signed-off-by: Stephen M. Cameron <scameron@...rdog.cce.hp.com> --- 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@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists