mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
dpt_i2o: fix build warning
We were getting build warning about: drivers/scsi/dpt_i2o.c:183:29: warning: 'dptids' defined but not used dptids[] is only used in the MODULE_DEVICE_TABLE so when MODULE is not defined then dptids[] becomes unused. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
9495e8354e
commit
f50abb9b63
@ -180,11 +180,14 @@ static u8 adpt_read_blink_led(adpt_hba* host)
|
|||||||
*============================================================================
|
*============================================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef MODULE
|
||||||
static struct pci_device_id dptids[] = {
|
static struct pci_device_id dptids[] = {
|
||||||
{ PCI_DPT_VENDOR_ID, PCI_DPT_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
|
{ PCI_DPT_VENDOR_ID, PCI_DPT_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
|
||||||
{ PCI_DPT_VENDOR_ID, PCI_DPT_RAPTOR_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
|
{ PCI_DPT_VENDOR_ID, PCI_DPT_RAPTOR_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
|
||||||
{ 0, }
|
{ 0, }
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(pci,dptids);
|
MODULE_DEVICE_TABLE(pci,dptids);
|
||||||
|
|
||||||
static int adpt_detect(struct scsi_host_template* sht)
|
static int adpt_detect(struct scsi_host_template* sht)
|
||||||
|
Loading…
Reference in New Issue
Block a user