summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2024-01-15 21:10:33 +0300
committerBjorn Helgaas <bhelgaas@google.com>2024-01-15 21:10:33 +0300
commitf04e5285efb064ebd6826e1b03c98233715308cd (patch)
treee703b73dff9232616037fddbbb1a858f177ca338 /include/linux
parentb85ea95d086471afb4ad062012a4d73cd328fa86 (diff)
parentdb02e176f597a14eb696141ffa008c2429453a15 (diff)
downloadlinux-f04e5285efb064ebd6826e1b03c98233715308cd.tar.xz
Merge branch 'pci/aer'
- Log AER errors as "Correctable" (not "Corrected") or "Uncorrectable" to match spec terminology (Bjorn Helgaas) - Decode Requester ID when no error info found instead of printing the raw hex value (Bjorn Helgaas) * pci/aer: PCI/AER: Use explicit register sizes for struct members PCI/AER: Decode Requester ID when no error info found PCI/AER: Use 'Correctable' and 'Uncorrectable' spec terms for errors
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/aer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/aer.h b/include/linux/aer.h
index f6ea2f57d808..ae0fae70d4bd 100644
--- a/include/linux/aer.h
+++ b/include/linux/aer.h
@@ -19,10 +19,10 @@
struct pci_dev;
struct aer_header_log_regs {
- unsigned int dw0;
- unsigned int dw1;
- unsigned int dw2;
- unsigned int dw3;
+ u32 dw0;
+ u32 dw1;
+ u32 dw2;
+ u32 dw3;
};
struct aer_capability_regs {