* [PATCH] PCI hotplug: change PCI nomenclature
@ 2009-10-26 13:44 Stefan Assmann
2009-10-26 17:54 ` Krzysztof Halasa
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Stefan Assmann @ 2009-10-26 13:44 UTC (permalink / raw)
To: Linux Kernel Mailing List
Cc: linux-pci, Jesse Barnes, Krzysztof Halasa, Don Dutile
Change PCI nomenclature according to
http://www.pcisig.com/developers/procedures/logos/Trademark_and_Logo_Usage_Guidelines_updated_112206.pdf.
Signed-off-by: Stefan Assmann <sassmann@redhat.com>
---
diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
index 0325d98..38183a5 100644
--- a/drivers/pci/hotplug/pci_hotplug_core.c
+++ b/drivers/pci/hotplug/pci_hotplug_core.c
@@ -68,26 +68,26 @@ static DEFINE_MUTEX(pci_hp_mutex);
static char *pci_bus_speed_strings[] = {
"33 MHz PCI", /* 0x00 */
"66 MHz PCI", /* 0x01 */
- "66 MHz PCIX", /* 0x02 */
- "100 MHz PCIX", /* 0x03 */
- "133 MHz PCIX", /* 0x04 */
+ "66 MHz PCI-X", /* 0x02 */
+ "100 MHz PCI-X", /* 0x03 */
+ "133 MHz PCI-X", /* 0x04 */
NULL, /* 0x05 */
NULL, /* 0x06 */
NULL, /* 0x07 */
NULL, /* 0x08 */
- "66 MHz PCIX 266", /* 0x09 */
- "100 MHz PCIX 266", /* 0x0a */
- "133 MHz PCIX 266", /* 0x0b */
+ "66 MHz PCI-X 266", /* 0x09 */
+ "100 MHz PCI-X 266", /* 0x0a */
+ "133 MHz PCI-X 266", /* 0x0b */
NULL, /* 0x0c */
NULL, /* 0x0d */
NULL, /* 0x0e */
NULL, /* 0x0f */
NULL, /* 0x10 */
- "66 MHz PCIX 533", /* 0x11 */
- "100 MHz PCIX 533", /* 0x12 */
- "133 MHz PCIX 533", /* 0x13 */
- "2.5 GT/s PCI-E", /* 0x14 */
- "5.0 GT/s PCI-E", /* 0x15 */
+ "66 MHz PCI-X 533", /* 0x11 */
+ "100 MHz PCI-X 533", /* 0x12 */
+ "133 MHz PCI-X 533", /* 0x13 */
+ "2.5 GT/s PCIe", /* 0x14 */
+ "5.0 GT/s PCIe", /* 0x15 */
};
#ifdef CONFIG_HOTPLUG_PCI_CPCI
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] PCI hotplug: change PCI nomenclature
2009-10-26 13:44 [PATCH] PCI hotplug: change PCI nomenclature Stefan Assmann
@ 2009-10-26 17:54 ` Krzysztof Halasa
2009-10-26 19:50 ` Don Dutile
2009-10-26 20:39 ` Jesse Barnes
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Halasa @ 2009-10-26 17:54 UTC (permalink / raw)
To: Stefan Assmann
Cc: Linux Kernel Mailing List, linux-pci, Jesse Barnes, Don Dutile
Stefan Assmann <sassmann@redhat.com> writes:
> +++ b/drivers/pci/hotplug/pci_hotplug_core.c
> - "66 MHz PCIX", /* 0x02 */
> - "100 MHz PCIX", /* 0x03 */
> - "133 MHz PCIX", /* 0x04 */
> + "66 MHz PCI-X", /* 0x02 */
> + "100 MHz PCI-X", /* 0x03 */
> + "133 MHz PCI-X", /* 0x04 */
> NULL, /* 0x05 */
> NULL, /* 0x06 */
> NULL, /* 0x07 */
> NULL, /* 0x08 */
> - "66 MHz PCIX 266", /* 0x09 */
> - "100 MHz PCIX 266", /* 0x0a */
> - "133 MHz PCIX 266", /* 0x0b */
> + "66 MHz PCI-X 266", /* 0x09 */
> + "100 MHz PCI-X 266", /* 0x0a */
> + "133 MHz PCI-X 266", /* 0x0b */
> NULL, /* 0x0c */
> NULL, /* 0x0d */
> NULL, /* 0x0e */
> NULL, /* 0x0f */
> NULL, /* 0x10 */
> - "66 MHz PCIX 533", /* 0x11 */
> - "100 MHz PCIX 533", /* 0x12 */
> - "133 MHz PCIX 533", /* 0x13 */
> - "2.5 GT/s PCI-E", /* 0x14 */
> - "5.0 GT/s PCI-E", /* 0x15 */
> + "66 MHz PCI-X 533", /* 0x11 */
> + "100 MHz PCI-X 533", /* 0x12 */
> + "133 MHz PCI-X 533", /* 0x13 */
> + "2.5 GT/s PCIe", /* 0x14 */
> + "5.0 GT/s PCIe", /* 0x15 */
Seems perfect now.
--
Krzysztof Halasa
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] PCI hotplug: change PCI nomenclature
2009-10-26 13:44 [PATCH] PCI hotplug: change PCI nomenclature Stefan Assmann
2009-10-26 17:54 ` Krzysztof Halasa
@ 2009-10-26 19:50 ` Don Dutile
2009-10-26 20:39 ` Jesse Barnes
2 siblings, 0 replies; 4+ messages in thread
From: Don Dutile @ 2009-10-26 19:50 UTC (permalink / raw)
To: Stefan Assmann
Cc: Linux Kernel Mailing List, linux-pci, Jesse Barnes,
Krzysztof Halasa
Stefan Assmann wrote:
> Change PCI nomenclature according to
> http://www.pcisig.com/developers/procedures/logos/Trademark_and_Logo_Usage_Guidelines_updated_112206.pdf.
>
> Signed-off-by: Stefan Assmann <sassmann@redhat.com>
> ---
> diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
> index 0325d98..38183a5 100644
> --- a/drivers/pci/hotplug/pci_hotplug_core.c
> +++ b/drivers/pci/hotplug/pci_hotplug_core.c
> @@ -68,26 +68,26 @@ static DEFINE_MUTEX(pci_hp_mutex);
> static char *pci_bus_speed_strings[] = {
> "33 MHz PCI", /* 0x00 */
> "66 MHz PCI", /* 0x01 */
> - "66 MHz PCIX", /* 0x02 */
> - "100 MHz PCIX", /* 0x03 */
> - "133 MHz PCIX", /* 0x04 */
> + "66 MHz PCI-X", /* 0x02 */
> + "100 MHz PCI-X", /* 0x03 */
> + "133 MHz PCI-X", /* 0x04 */
> NULL, /* 0x05 */
> NULL, /* 0x06 */
> NULL, /* 0x07 */
> NULL, /* 0x08 */
> - "66 MHz PCIX 266", /* 0x09 */
> - "100 MHz PCIX 266", /* 0x0a */
> - "133 MHz PCIX 266", /* 0x0b */
> + "66 MHz PCI-X 266", /* 0x09 */
> + "100 MHz PCI-X 266", /* 0x0a */
> + "133 MHz PCI-X 266", /* 0x0b */
> NULL, /* 0x0c */
> NULL, /* 0x0d */
> NULL, /* 0x0e */
> NULL, /* 0x0f */
> NULL, /* 0x10 */
> - "66 MHz PCIX 533", /* 0x11 */
> - "100 MHz PCIX 533", /* 0x12 */
> - "133 MHz PCIX 533", /* 0x13 */
> - "2.5 GT/s PCI-E", /* 0x14 */
> - "5.0 GT/s PCI-E", /* 0x15 */
> + "66 MHz PCI-X 533", /* 0x11 */
> + "100 MHz PCI-X 533", /* 0x12 */
> + "133 MHz PCI-X 533", /* 0x13 */
> + "2.5 GT/s PCIe", /* 0x14 */
> + "5.0 GT/s PCIe", /* 0x15 */
> };
>
> #ifdef CONFIG_HOTPLUG_PCI_CPCI
Signed-off-by: Donald Dutile <ddutile@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] PCI hotplug: change PCI nomenclature
2009-10-26 13:44 [PATCH] PCI hotplug: change PCI nomenclature Stefan Assmann
2009-10-26 17:54 ` Krzysztof Halasa
2009-10-26 19:50 ` Don Dutile
@ 2009-10-26 20:39 ` Jesse Barnes
2 siblings, 0 replies; 4+ messages in thread
From: Jesse Barnes @ 2009-10-26 20:39 UTC (permalink / raw)
To: Stefan Assmann
Cc: Linux Kernel Mailing List, linux-pci, Jesse Barnes,
Krzysztof Halasa, Don Dutile
On Mon, 26 Oct 2009 14:44:46 +0100
Stefan Assmann <sassmann@redhat.com> wrote:
> Change PCI nomenclature according to
> http://www.pcisig.com/developers/procedures/logos/Trademark_and_Logo_Usage_Guidelines_updated_112206.pdf.
>
> Signed-off-by: Stefan Assmann <sassmann@redhat.com>
Applied to my linux-next tree, thanks.
--
Jesse Barnes, Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-10-26 20:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-26 13:44 [PATCH] PCI hotplug: change PCI nomenclature Stefan Assmann
2009-10-26 17:54 ` Krzysztof Halasa
2009-10-26 19:50 ` Don Dutile
2009-10-26 20:39 ` Jesse Barnes
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox