diff options
| author | Linus Walleij <[email protected]> | 2021-07-26 10:37:55 +0200 |
|---|---|---|
| committer | Linus Walleij <[email protected]> | 2021-08-04 12:20:32 +0200 |
| commit | 8e3d25a6231832a9525f0e0bb6fb4c13df347175 (patch) | |
| tree | c85477627be4faf0294ed9258e5c7714a5787952 /include/linux/platform_data | |
| parent | d2b507acc62d9cdeed0885392ae8c33f8f1a109c (diff) | |
pata: ixp4xx: Refer to cmd and ctl rather than csN
The two "cs0" and "cs1" are "chip selects" but on some
platforms such as GW2358 they are actually both in CS3
making this terminology very confusing. Call the
addresses "cmd" and "ctl" after function instead.
Signed-off-by: Linus Walleij <[email protected]>
Diffstat (limited to 'include/linux/platform_data')
| -rw-r--r-- | include/linux/platform_data/pata_ixp4xx_cf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/platform_data/pata_ixp4xx_cf.h b/include/linux/platform_data/pata_ixp4xx_cf.h index 601ba97fef57..e60fa41da4a5 100644 --- a/include/linux/platform_data/pata_ixp4xx_cf.h +++ b/include/linux/platform_data/pata_ixp4xx_cf.h @@ -14,8 +14,8 @@ struct ixp4xx_pata_data { volatile u32 *cs1_cfg; unsigned long cs0_bits; unsigned long cs1_bits; - void __iomem *cs0; - void __iomem *cs1; + void __iomem *cmd; + void __iomem *ctl; }; #endif |
