mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-23 15:11:16 +00:00
PCI: change PCI nomenclature in drivers/pci/ (non-comment changes)
Changing occurrences of variants of PCI-X and PCIe to the PCI-SIG terms listed in the "Trademark and Logo Usage Guidelines". http://www.pcisig.com/developers/procedures/logos/Trademark_and_Logo_Usage_Guidelines_updated_112206.pdf Patch is limited to drivers/pci/ and changes concern non-comment parts or anything that might be visible to the user. Signed-off-by: Stefan Assmann <sassmann@redhat.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
This commit is contained in:
parent
45e829ea41
commit
7e8af37a9a
4 changed files with 6 additions and 6 deletions
|
@ -3,14 +3,14 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
config PCIEAER_INJECT
|
config PCIEAER_INJECT
|
||||||
tristate "PCIE AER error injector support"
|
tristate "PCIe AER error injector support"
|
||||||
depends on PCIEAER
|
depends on PCIEAER
|
||||||
default n
|
default n
|
||||||
help
|
help
|
||||||
This enables PCI Express Root Port Advanced Error Reporting
|
This enables PCI Express Root Port Advanced Error Reporting
|
||||||
(AER) software error injector.
|
(AER) software error injector.
|
||||||
|
|
||||||
Debuging PCIE AER code is quite difficult because it is hard
|
Debugging PCIe AER code is quite difficult because it is hard
|
||||||
to trigger various real hardware errors. Software based
|
to trigger various real hardware errors. Software based
|
||||||
error injection can fake almost all kinds of errors with the
|
error injection can fake almost all kinds of errors with the
|
||||||
help of a user space helper tool aer-inject, which can be
|
help of a user space helper tool aer-inject, which can be
|
||||||
|
|
|
@ -484,5 +484,5 @@ static void __exit aer_inject_exit(void)
|
||||||
module_init(aer_inject_init);
|
module_init(aer_inject_init);
|
||||||
module_exit(aer_inject_exit);
|
module_exit(aer_inject_exit);
|
||||||
|
|
||||||
MODULE_DESCRIPTION("PCIE AER software error injector");
|
MODULE_DESCRIPTION("PCIe AER software error injector");
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
|
@ -184,7 +184,7 @@ void aer_print_error(struct pci_dev *dev, struct aer_err_info *info)
|
||||||
|
|
||||||
if (info->status == 0) {
|
if (info->status == 0) {
|
||||||
AER_PR(info, dev,
|
AER_PR(info, dev,
|
||||||
"PCIE Bus Error: severity=%s, type=Unaccessible, "
|
"PCIe Bus Error: severity=%s, type=Unaccessible, "
|
||||||
"id=%04x(Unregistered Agent ID)\n",
|
"id=%04x(Unregistered Agent ID)\n",
|
||||||
aer_error_severity_string[info->severity], id);
|
aer_error_severity_string[info->severity], id);
|
||||||
} else {
|
} else {
|
||||||
|
@ -194,7 +194,7 @@ void aer_print_error(struct pci_dev *dev, struct aer_err_info *info)
|
||||||
agent = AER_GET_AGENT(info->severity, info->status);
|
agent = AER_GET_AGENT(info->severity, info->status);
|
||||||
|
|
||||||
AER_PR(info, dev,
|
AER_PR(info, dev,
|
||||||
"PCIE Bus Error: severity=%s, type=%s, id=%04x(%s)\n",
|
"PCIe Bus Error: severity=%s, type=%s, id=%04x(%s)\n",
|
||||||
aer_error_severity_string[info->severity],
|
aer_error_severity_string[info->severity],
|
||||||
aer_error_layer[layer], id, aer_agent_string[agent]);
|
aer_error_layer[layer], id, aer_agent_string[agent]);
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
*/
|
*/
|
||||||
#define DRIVER_VERSION "v1.0"
|
#define DRIVER_VERSION "v1.0"
|
||||||
#define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
|
#define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
|
||||||
#define DRIVER_DESC "PCIE Port Bus Driver"
|
#define DRIVER_DESC "PCIe Port Bus Driver"
|
||||||
MODULE_AUTHOR(DRIVER_AUTHOR);
|
MODULE_AUTHOR(DRIVER_AUTHOR);
|
||||||
MODULE_DESCRIPTION(DRIVER_DESC);
|
MODULE_DESCRIPTION(DRIVER_DESC);
|
||||||
MODULE_LICENSE("GPL");
|
MODULE_LICENSE("GPL");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue