All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE
@ 2015-07-17  5:46 Vaishali Thakkar
  2015-10-01  4:51 ` Vaishali Thakkar
  2015-11-10  2:56 ` Vaishali Thakkar
  0 siblings, 2 replies; 3+ messages in thread
From: Vaishali Thakkar @ 2015-07-17  5:46 UTC (permalink / raw)
  To: James E.J. Bottomley; +Cc: linux-scsi, linux-kernel

Macro DEFINE_PCI_DEVICE_TABLE is deprecated. So, here use
struct pci_device_id instead of DEFINE_PCI_DEVICE_TABLE with
the goal of getting rid of this macro completely.

The Coccinelle semantic patch that performs this transformation
is as follows:

@@
identifier a;
declarer name DEFINE_PCI_DEVICE_TABLE;
initializer i;
@@
- DEFINE_PCI_DEVICE_TABLE(a)
+ const struct pci_device_id a[]
= i;

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
---
This patch is against linux-next branch
---
 drivers/scsi/wd719x.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c
index 61346aa..4655d16 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) },
 	{}
 };
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE
  2015-07-17  5:46 [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE Vaishali Thakkar
@ 2015-10-01  4:51 ` Vaishali Thakkar
  2015-11-10  2:56 ` Vaishali Thakkar
  1 sibling, 0 replies; 3+ messages in thread
From: Vaishali Thakkar @ 2015-10-01  4:51 UTC (permalink / raw)
  To: James E.J. Bottomley; +Cc: linux-scsi, Linux Kernel Mailing List

Ping!

On Fri, Jul 17, 2015 at 11:16 AM, Vaishali Thakkar
<vthakkar1994@gmail.com> wrote:
> Macro DEFINE_PCI_DEVICE_TABLE is deprecated. So, here use
> struct pci_device_id instead of DEFINE_PCI_DEVICE_TABLE with
> the goal of getting rid of this macro completely.
>
> The Coccinelle semantic patch that performs this transformation
> is as follows:
>
> @@
> identifier a;
> declarer name DEFINE_PCI_DEVICE_TABLE;
> initializer i;
> @@
> - DEFINE_PCI_DEVICE_TABLE(a)
> + const struct pci_device_id a[]
> = i;
>
> Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
> ---
> This patch is against linux-next branch
> ---
>  drivers/scsi/wd719x.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c
> index 61346aa..4655d16 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) },
>         {}
>  };
> --
> 1.9.1
>



-- 
Vaishali

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE
  2015-07-17  5:46 [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE Vaishali Thakkar
  2015-10-01  4:51 ` Vaishali Thakkar
@ 2015-11-10  2:56 ` Vaishali Thakkar
  1 sibling, 0 replies; 3+ messages in thread
From: Vaishali Thakkar @ 2015-11-10  2:56 UTC (permalink / raw)
  To: James E.J. Bottomley; +Cc: linux-scsi, Linux Kernel Mailing List

On Fri, Jul 17, 2015 at 11:16 AM, Vaishali Thakkar
<vthakkar1994@gmail.com> wrote:
> Macro DEFINE_PCI_DEVICE_TABLE is deprecated. So, here use
> struct pci_device_id instead of DEFINE_PCI_DEVICE_TABLE with
> the goal of getting rid of this macro completely.
>
> The Coccinelle semantic patch that performs this transformation
> is as follows:
>
> @@
> identifier a;
> declarer name DEFINE_PCI_DEVICE_TABLE;
> initializer i;
> @@
> - DEFINE_PCI_DEVICE_TABLE(a)
> + const struct pci_device_id a[]
> = i;
>
> Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
> ---
> This patch is against linux-next branch
> ---
>  drivers/scsi/wd719x.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/wd719x.c b/drivers/scsi/wd719x.c
> index 61346aa..4655d16 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) },
>         {}
>  };
> --
> 1.9.1
>

Hi James,

Can you please apply this patch? Actually this is the only case which is using
DEFINE_PCI_DEVICE_TABLE in the kernel and the use is blocking the removal
of everything related to this macro in the kernel. So, it would be
good if you can
apply this patch.

Inform me if it's not in your queue and I need to resend it.

Thanks

-- 
Vaishali

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-11-10  2:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-17  5:46 [PATCH] wd719x: Remove use of macro DEFINE_PCI_DEVICE_TABLE Vaishali Thakkar
2015-10-01  4:51 ` Vaishali Thakkar
2015-11-10  2:56 ` Vaishali Thakkar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.