diff options
author | Joe Perches <[email protected]> | 2016-09-01 16:14:58 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2016-09-01 17:52:01 -0700 |
commit | 8a793bea2745d9876030f892a84fc8be180f2e78 (patch) | |
tree | afc9276480e6ae28f187b45e164c99e9417b4441 | |
parent | 6aa303defb7454a2520c4ddcdf6b081f62a15890 (diff) |
drivers/scsi/wd719x.c: remove last declaration using DEFINE_PCI_DEVICE_TABLE
Convert it to the preferred const struct pci_device_id instead.
Link: http://lkml.kernel.org/r/95c5e4100c3cd4eda643624f5b70e8d7abceb86c.1472660229.git.joe@perches.com
Signed-off-by: Joe Perches <[email protected]>
Reviewed-by: Bart Van Assche <[email protected]>
Cc: "James E.J. Bottomley" <[email protected]>
Cc: "Martin K. Petersen" <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/scsi/wd719x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c index e3da1a2fdb66..2a9da2e0ea6b 100644 --- a/drivers/scsi/wd719x.c +++ b/drivers/scsi/wd719x.c @@ -962,7 +962,7 @@ static void wd719x_pci_remove(struct pci_dev *pdev) scsi_host_put(sh); } -static DEFINE_PCI_DEVICE_TABLE(wd719x_pci_table) = { +static const struct pci_device_id wd719x_pci_table[] = { { PCI_DEVICE(PCI_VENDOR_ID_WD, 0x3296) }, {} }; |