diff options
| author | Logan Gunthorpe <[email protected]> | 2020-01-14 20:56:42 -0700 |
|---|---|---|
| committer | Bjorn Helgaas <[email protected]> | 2020-01-15 11:00:37 -0600 |
| commit | fcccd282b633ab9fc7d53ff8ccf82ab5c30a0985 (patch) | |
| tree | a59927d1633f740dded30ea87f9e9561bfccd49c /include/linux | |
| parent | 2085747d533b9be5f5a51efbc3e86be0164571a2 (diff) | |
PCI/switchtec: Rename generation-specific constants
Gen4 hardware will have different values for the SWITCHTEC_X_RUNNING and
SWITCHTEC_IOCTL_NUM_PARTITIONS, so rename them with GEN3 in their name.
No functional changes intended.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Logan Gunthorpe <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/switchtec.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/switchtec.h b/include/linux/switchtec.h index b4ba3a38f30f..4ee450487fe4 100644 --- a/include/linux/switchtec.h +++ b/include/linux/switchtec.h @@ -98,10 +98,10 @@ struct sw_event_regs { } __packed; enum { - SWITCHTEC_CFG0_RUNNING = 0x04, - SWITCHTEC_CFG1_RUNNING = 0x05, - SWITCHTEC_IMG0_RUNNING = 0x03, - SWITCHTEC_IMG1_RUNNING = 0x07, + SWITCHTEC_GEN3_CFG0_RUNNING = 0x04, + SWITCHTEC_GEN3_CFG1_RUNNING = 0x05, + SWITCHTEC_GEN3_IMG0_RUNNING = 0x03, + SWITCHTEC_GEN3_IMG1_RUNNING = 0x07, }; struct sys_info_regs { |