Commit db02e176 authored by Bjorn Helgaas's avatar Bjorn Helgaas

PCI/AER: Use explicit register sizes for struct members

aer_irq() reads the AER Root Error Status and Error Source Identification
(PCI_ERR_ROOT_STATUS and PCI_ERR_ROOT_ERR_SRC) registers directly into
struct aer_err_source.  Both registers are 32 bits, so declare the members
explicitly as "u32" instead of "unsigned int".

Similarly, aer_get_device_error_info() reads the AER Header Log
(PCI_ERR_HEADER_LOG) registers, which are also 32 bits, into struct
aer_header_log_regs.  Declare those members as "u32" as well.

No functional changes intended.

Link: https://lore.kernel.org/r/20231206224231.732765-4-helgaas@kernel.orgSigned-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Reviewed-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 1291b716
...@@ -41,8 +41,8 @@ ...@@ -41,8 +41,8 @@
#define AER_MAX_TYPEOF_UNCOR_ERRS 27 /* as per PCI_ERR_UNCOR_STATUS*/ #define AER_MAX_TYPEOF_UNCOR_ERRS 27 /* as per PCI_ERR_UNCOR_STATUS*/
struct aer_err_source { struct aer_err_source {
unsigned int status; u32 status; /* PCI_ERR_ROOT_STATUS */
unsigned int id; u32 id; /* PCI_ERR_ROOT_ERR_SRC */
}; };
struct aer_rpc { struct aer_rpc {
......
...@@ -19,10 +19,10 @@ ...@@ -19,10 +19,10 @@
struct pci_dev; struct pci_dev;
struct aer_header_log_regs { struct aer_header_log_regs {
unsigned int dw0; u32 dw0;
unsigned int dw1; u32 dw1;
unsigned int dw2; u32 dw2;
unsigned int dw3; u32 dw3;
}; };
struct aer_capability_regs { struct aer_capability_regs {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment