From: Jean Delvare Use the PCI vendor symbol instead of a numeric value in the scsi/hptiop driver. Signed-off-by: Jean Delvare Cc: HighPoint Linux Team Cc: "James E.J. Bottomley" Signed-off-by: Andrew Morton --- drivers/scsi/hptiop.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/scsi/hptiop.c~hptiop-use-pci-vendor-symbol drivers/scsi/hptiop.c --- a/drivers/scsi/hptiop.c~hptiop-use-pci-vendor-symbol +++ a/drivers/scsi/hptiop.c @@ -879,8 +879,8 @@ static void hptiop_remove(struct pci_dev } static struct pci_device_id hptiop_id_table[] = { - { PCI_DEVICE(0x1103, 0x3220) }, - { PCI_DEVICE(0x1103, 0x3320) }, + { PCI_DEVICE(PCI_VENDOR_ID_TTI, 0x3220) }, + { PCI_DEVICE(PCI_VENDOR_ID_TTI, 0x3320) }, {}, }; _