linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Bjorn Helgaas <bhelgaas@google.com>
To: Francesco Ruggeri <fruggeri@aristanetworks.com>
Cc: linux-pci@vger.kernel.org, sbhatewara@vmware.com,
	linux-kernel@vger.kernel.org, gregkh@linuxfoundation.org,
	pv-drivers@vmware.com
Subject: Re: [PATCH 1/1] pci: move PCI_VENDOR_ID_VMWARE to pci_ids.h
Date: Wed, 24 Sep 2014 11:56:29 -0600	[thread overview]
Message-ID: <20140924175629.GD20416@google.com> (raw)
In-Reply-To: <20140924172923.D112148565B@fruggeri-Arora18.sjc.aristanetworks.com>

On Wed, Sep 24, 2014 at 10:29:23AM -0700, Francesco Ruggeri wrote:
> From b99b1ec156ab351668eb77a00a57a4ae095eec28 Mon Sep 17 00:00:00 2001
> From: Francesco Ruggeri <fruggeri@arista.com>
> Date: Wed, 24 Sep 2014 10:12:41 -0700
> Subject: [PATCH 1/1] pci: move PCI_VENDOR_ID_VMWARE to pci_ids.h
> 
> Moving PCI_VENDOR_ID_VMWARE from device specific files to pci_ids.h.
> It is useful to always have access to it, especially when accessing
> subsystem_vendor_id on emulated devices.
> 
> Signed-off-by: Francesco Ruggeri <fruggeri@arista.com>

Applied to pci/misc for v3.18, thanks!

> ---
>  drivers/gpu/drm/vmwgfx/svga_reg.h  | 1 -
>  drivers/misc/vmw_vmci/vmci_guest.c | 1 -
>  drivers/net/vmxnet3/vmxnet3_int.h  | 1 -
>  drivers/scsi/vmw_pvscsi.h          | 1 -
>  include/linux/pci_ids.h            | 2 ++
>  5 files changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpu/drm/vmwgfx/svga_reg.h b/drivers/gpu/drm/vmwgfx/svga_reg.h
> index 11323dd..e4259c2 100644
> --- a/drivers/gpu/drm/vmwgfx/svga_reg.h
> +++ b/drivers/gpu/drm/vmwgfx/svga_reg.h
> @@ -35,7 +35,6 @@
>  /*
>   * PCI device IDs.
>   */
> -#define PCI_VENDOR_ID_VMWARE            0x15AD
>  #define PCI_DEVICE_ID_VMWARE_SVGA2      0x0405
>  
>  /*
> diff --git a/drivers/misc/vmw_vmci/vmci_guest.c b/drivers/misc/vmw_vmci/vmci_guest.c
> index 248399a..189b325 100644
> --- a/drivers/misc/vmw_vmci/vmci_guest.c
> +++ b/drivers/misc/vmw_vmci/vmci_guest.c
> @@ -35,7 +35,6 @@
>  #include "vmci_driver.h"
>  #include "vmci_event.h"
>  
> -#define PCI_VENDOR_ID_VMWARE		0x15AD
>  #define PCI_DEVICE_ID_VMWARE_VMCI	0x0740
>  
>  #define VMCI_UTIL_NUM_RESOURCES 1
> diff --git a/drivers/net/vmxnet3/vmxnet3_int.h b/drivers/net/vmxnet3/vmxnet3_int.h
> index 3759479..5f0199f 100644
> --- a/drivers/net/vmxnet3/vmxnet3_int.h
> +++ b/drivers/net/vmxnet3/vmxnet3_int.h
> @@ -117,7 +117,6 @@ enum {
>  /*
>   * PCI vendor and device IDs.
>   */
> -#define PCI_VENDOR_ID_VMWARE            0x15AD
>  #define PCI_DEVICE_ID_VMWARE_VMXNET3    0x07B0
>  #define MAX_ETHERNET_CARDS		10
>  #define MAX_PCI_PASSTHRU_DEVICE		6
> diff --git a/drivers/scsi/vmw_pvscsi.h b/drivers/scsi/vmw_pvscsi.h
> index ce45888..ee16f0c 100644
> --- a/drivers/scsi/vmw_pvscsi.h
> +++ b/drivers/scsi/vmw_pvscsi.h
> @@ -32,7 +32,6 @@
>  
>  #define MASK(n)        ((1 << (n)) - 1)        /* make an n-bit mask */
>  
> -#define PCI_VENDOR_ID_VMWARE		0x15AD
>  #define PCI_DEVICE_ID_VMWARE_PVSCSI	0x07C0
>  
>  /*
> diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
> index 6ed0bb7..e62b20a 100644
> --- a/include/linux/pci_ids.h
> +++ b/include/linux/pci_ids.h
> @@ -2971,4 +2971,6 @@
>  
>  #define PCI_VENDOR_ID_OCZ		0x1b85
>  
> +#define PCI_VENDOR_ID_VMWARE		0x15AD
> +
>  #endif /* _LINUX_PCI_IDS_H */
> -- 
> 1.8.1.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-pci" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2014-09-24 17:56 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-24 17:29 [PATCH 1/1] pci: move PCI_VENDOR_ID_VMWARE to pci_ids.h Francesco Ruggeri
2014-09-24 17:56 ` Bjorn Helgaas [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140924175629.GD20416@google.com \
    --to=bhelgaas@google.com \
    --cc=fruggeri@aristanetworks.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=pv-drivers@vmware.com \
    --cc=sbhatewara@vmware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).