Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1335145 > unrolled thread

[PATCH] [SCSI] dpt_i2o: fix build warning

Started bySudip Mukherjee <sudipm.mukherjee@gmail.com>
First post2016-02-16 09:40 +0100
Last post2016-02-16 19:30 +0100
Articles 3 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] [SCSI] dpt_i2o: fix build warning Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2016-02-16 09:40 +0100
    Re: [PATCH] [SCSI] dpt_i2o: fix build warning Johannes Thumshirn <jthumshirn@suse.de> - 2016-02-16 10:20 +0100
      Re: [PATCH] [SCSI] dpt_i2o: fix build warning Sudip Mukherjee <sudipm.mukherjee@gmail.com> - 2016-02-16 19:30 +0100

#1335145 — [PATCH] [SCSI] dpt_i2o: fix build warning

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2016-02-16 09:40 +0100
Subject[PATCH] [SCSI] dpt_i2o: fix build warning
Message-ID<r2JkS-5nT-7@gated-at.bofh.it>
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>
---
 drivers/scsi/dpt_i2o.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c
index d4cda5e..21c8d21 100644
--- a/drivers/scsi/dpt_i2o.c
+++ b/drivers/scsi/dpt_i2o.c
@@ -180,11 +180,14 @@ static u8 adpt_read_blink_led(adpt_hba* host)
  *============================================================================
  */
 
+#ifdef MODULE
 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_RAPTOR_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
 	{ 0, }
 };
+#endif
+
 MODULE_DEVICE_TABLE(pci,dptids);
 
 static int adpt_detect(struct scsi_host_template* sht)
-- 
1.9.1

[toc] | [next] | [standalone]


#1335203

FromJohannes Thumshirn <jthumshirn@suse.de>
Date2016-02-16 10:20 +0100
Message-ID<r2JXB-5TU-35@gated-at.bofh.it>
In reply to#1335145
On Tue, Feb 16, 2016 at 02:07:36PM +0530, Sudip Mukherjee wrote:
> 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.

Nah. Care to make a proper pci driver from it instead of plastering yet
another #ifdef in?

> 
> Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
> ---
>  drivers/scsi/dpt_i2o.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/scsi/dpt_i2o.c b/drivers/scsi/dpt_i2o.c
> index d4cda5e..21c8d21 100644
> --- a/drivers/scsi/dpt_i2o.c
> +++ b/drivers/scsi/dpt_i2o.c
> @@ -180,11 +180,14 @@ static u8 adpt_read_blink_led(adpt_hba* host)
>   *============================================================================
>   */
>  
> +#ifdef MODULE
>  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_RAPTOR_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID,},
>  	{ 0, }
>  };
> +#endif
> +
>  MODULE_DEVICE_TABLE(pci,dptids);
>  
>  static int adpt_detect(struct scsi_host_template* sht)
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Johannes Thumshirn                                          Storage
jthumshirn@suse.de                                +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850

[toc] | [prev] | [next] | [standalone]


#1335699

FromSudip Mukherjee <sudipm.mukherjee@gmail.com>
Date2016-02-16 19:30 +0100
Message-ID<r2SxQ-35i-15@gated-at.bofh.it>
In reply to#1335203
On Tuesday 16 February 2016 02:47 PM, Johannes Thumshirn wrote:
> On Tue, Feb 16, 2016 at 02:07:36PM +0530, Sudip Mukherjee wrote:
>> 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.
>
> Nah. Care to make a proper pci driver from it instead of plastering yet
> another #ifdef in?

Ok. I am on it. I hope someone has the hardware to check the changes.

regards
sudip

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web