linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h
       [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
@ 2015-03-29 13:37 ` Michael S. Tsirkin
  2015-03-30  7:31   ` Jean Delvare
       [not found]   ` <1427635734-24786-3-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
       [not found] ` <1427635734-24786-1-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  1 sibling, 2 replies; 7+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:37 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jean Delvare, Wolfram Sang, Jonathan Corbet, linux-i2c, linux-doc

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
update i2c documentation accordingly.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---
 Documentation/i2c/busses/i2c-i801 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/i2c/busses/i2c-i801 b/Documentation/i2c/busses/i2c-i801
index 82f48f7..8036644 100644
--- a/Documentation/i2c/busses/i2c-i801
+++ b/Documentation/i2c/busses/i2c-i801
@@ -141,7 +141,7 @@ host bridge PCI device. Get yours with "lspci -n -v -s 00:00.0":
 
 Here the host bridge ID is 2570 (82865G/PE/P), the subvendor ID is 1043
 (Asus) and the subdevice ID is 80f2 (P4P800-X). You can find the symbolic
-names for the bridge ID and the subvendor ID in include/linux/pci_ids.h,
+names for the bridge ID and the subvendor ID in include/uapi/linux/pci_ids.h,
 and then add a case for your subdevice ID at the right place in
 drivers/pci/quirks.c. Then please give it very good testing, to make sure
 that the unhidden SMBus doesn't conflict with e.g. ACPI.
-- 
MST

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

* [PATCH 39/86] i2c/i801: use uapi/linux/pci_ids.h directly
       [not found] ` <1427635734-24786-1-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-03-29 13:40   ` Michael S. Tsirkin
       [not found]     ` <1427635734-24786-40-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Michael S. Tsirkin @ 2015-03-29 13:40 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
  Cc: Jean Delvare, Wolfram Sang, linux-i2c-u79uwXL29TY76Z2rM5mHXA

Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
use the new header directly so we can drop
the wrapper in include/linux/pci_ids.h.

Signed-off-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
 drivers/i2c/busses/i2c-i801.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
index 8fafb25..948a1a2 100644
--- a/drivers/i2c/busses/i2c-i801.c
+++ b/drivers/i2c/busses/i2c-i801.c
@@ -164,7 +164,7 @@
 #define STATUS_FLAGS		(SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
 				 STATUS_ERROR_FLAGS)
 
-/* Older devices have their ID defined in <linux/pci_ids.h> */
+/* Older devices have their ID defined in <uapi/linux/pci_ids.h> */
 #define PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS		0x0f12
 #define PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS		0x2292
 #define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS		0x1c22
-- 
MST

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

* Re: [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h
  2015-03-29 13:37 ` [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h Michael S. Tsirkin
@ 2015-03-30  7:31   ` Jean Delvare
       [not found]   ` <1427635734-24786-3-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  1 sibling, 0 replies; 7+ messages in thread
From: Jean Delvare @ 2015-03-30  7:31 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: linux-kernel, Wolfram Sang, Jonathan Corbet, linux-i2c, linux-doc

On Sun, 29 Mar 2015 15:37:30 +0200, Michael S. Tsirkin wrote:
> Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
> update i2c documentation accordingly.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
>  Documentation/i2c/busses/i2c-i801 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/i2c/busses/i2c-i801 b/Documentation/i2c/busses/i2c-i801
> index 82f48f7..8036644 100644
> --- a/Documentation/i2c/busses/i2c-i801
> +++ b/Documentation/i2c/busses/i2c-i801
> @@ -141,7 +141,7 @@ host bridge PCI device. Get yours with "lspci -n -v -s 00:00.0":
>  
>  Here the host bridge ID is 2570 (82865G/PE/P), the subvendor ID is 1043
>  (Asus) and the subdevice ID is 80f2 (P4P800-X). You can find the symbolic
> -names for the bridge ID and the subvendor ID in include/linux/pci_ids.h,
> +names for the bridge ID and the subvendor ID in include/uapi/linux/pci_ids.h,
>  and then add a case for your subdevice ID at the right place in
>  drivers/pci/quirks.c. Then please give it very good testing, to make sure
>  that the unhidden SMBus doesn't conflict with e.g. ACPI.

No objection from me.

Reviewed-by: Jean Delvare <jdelvare@suse.de>

-- 
Jean Delvare
SUSE L3 Support

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

* Re: [PATCH 39/86] i2c/i801: use uapi/linux/pci_ids.h directly
       [not found]     ` <1427635734-24786-40-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-03-30  7:32       ` Jean Delvare
  2015-04-03 19:09       ` Wolfram Sang
  1 sibling, 0 replies; 7+ messages in thread
From: Jean Delvare @ 2015-03-30  7:32 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Wolfram Sang,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA

On Sun, 29 Mar 2015 15:40:42 +0200, Michael S. Tsirkin wrote:
> Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
> use the new header directly so we can drop
> the wrapper in include/linux/pci_ids.h.
> 
> Signed-off-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
> ---
>  drivers/i2c/busses/i2c-i801.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/i2c/busses/i2c-i801.c b/drivers/i2c/busses/i2c-i801.c
> index 8fafb25..948a1a2 100644
> --- a/drivers/i2c/busses/i2c-i801.c
> +++ b/drivers/i2c/busses/i2c-i801.c
> @@ -164,7 +164,7 @@
>  #define STATUS_FLAGS		(SMBHSTSTS_BYTE_DONE | SMBHSTSTS_INTR | \
>  				 STATUS_ERROR_FLAGS)
>  
> -/* Older devices have their ID defined in <linux/pci_ids.h> */
> +/* Older devices have their ID defined in <uapi/linux/pci_ids.h> */
>  #define PCI_DEVICE_ID_INTEL_BAYTRAIL_SMBUS		0x0f12
>  #define PCI_DEVICE_ID_INTEL_BRASWELL_SMBUS		0x2292
>  #define PCI_DEVICE_ID_INTEL_COUGARPOINT_SMBUS		0x1c22

No objection from me.

Reviewed-by: Jean Delvare <jdelvare-l3A5Bk7waGM@public.gmane.org>


-- 
Jean Delvare
SUSE L3 Support

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

* Re: [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h
       [not found]   ` <1427635734-24786-3-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-04-03 19:09     ` Wolfram Sang
  2015-04-06  6:38       ` Jean Delvare
  0 siblings, 1 reply; 7+ messages in thread
From: Wolfram Sang @ 2015-04-03 19:09 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Jean Delvare,
	Jonathan Corbet, linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-doc-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 388 bytes --]

On Sun, Mar 29, 2015 at 03:37:30PM +0200, Michael S. Tsirkin wrote:
> Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
> update i2c documentation accordingly.
> 
> Signed-off-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

Acked-by: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>

I don't know if I should take it. If so, let me know.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 39/86] i2c/i801: use uapi/linux/pci_ids.h directly
       [not found]     ` <1427635734-24786-40-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  2015-03-30  7:32       ` Jean Delvare
@ 2015-04-03 19:09       ` Wolfram Sang
  1 sibling, 0 replies; 7+ messages in thread
From: Wolfram Sang @ 2015-04-03 19:09 UTC (permalink / raw)
  To: Michael S. Tsirkin
  Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, Jean Delvare,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA

[-- Attachment #1: Type: text/plain, Size: 436 bytes --]

On Sun, Mar 29, 2015 at 03:40:42PM +0200, Michael S. Tsirkin wrote:
> Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
> use the new header directly so we can drop
> the wrapper in include/linux/pci_ids.h.
> 
> Signed-off-by: Michael S. Tsirkin <mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>

Acked-by: Wolfram Sang <wsa-z923LK4zBo2bacvFa/9K2g@public.gmane.org>

I don't know if I should take it. If so, let me know.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

* Re: [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h
  2015-04-03 19:09     ` Wolfram Sang
@ 2015-04-06  6:38       ` Jean Delvare
  0 siblings, 0 replies; 7+ messages in thread
From: Jean Delvare @ 2015-04-06  6:38 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: Michael S. Tsirkin, linux-kernel, Jonathan Corbet, linux-i2c,
	linux-doc

Hi Wolfram,

On Fri, 3 Apr 2015 21:09:17 +0200, Wolfram Sang wrote:
> On Sun, Mar 29, 2015 at 03:37:30PM +0200, Michael S. Tsirkin wrote:
> > Header moved from linux/pci_ids.h to uapi/linux/pci_ids.h,
> > update i2c documentation accordingly.
> > 
> > Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> 
> Acked-by: Wolfram Sang <wsa@the-dreams.de>
> 
> I don't know if I should take it. If so, let me know.

Don't, the series was nacked meanwhile.

Thanks,
-- 
Jean Delvare
SUSE L3 Support

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

end of thread, other threads:[~2015-04-06  6:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1427635734-24786-1-git-send-email-mst@redhat.com>
2015-03-29 13:37 ` [PATCH 02/86] i2c/i801: linux/pci_ids.h -> uapi/linux/pci_ids.h Michael S. Tsirkin
2015-03-30  7:31   ` Jean Delvare
     [not found]   ` <1427635734-24786-3-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-04-03 19:09     ` Wolfram Sang
2015-04-06  6:38       ` Jean Delvare
     [not found] ` <1427635734-24786-1-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-03-29 13:40   ` [PATCH 39/86] i2c/i801: use uapi/linux/pci_ids.h directly Michael S. Tsirkin
     [not found]     ` <1427635734-24786-40-git-send-email-mst-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-03-30  7:32       ` Jean Delvare
2015-04-03 19:09       ` Wolfram Sang

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).