[PATCH 01/13] PCI: brcmstb: Remove redundant const specifier for struct fields
From: Jim Quinlan
Date: Fri Sep 11 2026 - 19:43:46 EST
All of the variables using this particular structure are declared as const.
There is no reason to declare its individual fields as being const.
Signed-off-by: Jim Quinlan <james.quinlan@xxxxxxxxxxxx>
---
drivers/pci/controller/pcie-brcmstb.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/controller/pcie-brcmstb.c b/drivers/pci/controller/pcie-brcmstb.c
index 8a0c353d2abf..89aaa19d508a 100644
--- a/drivers/pci/controller/pcie-brcmstb.c
+++ b/drivers/pci/controller/pcie-brcmstb.c
@@ -288,9 +288,9 @@ struct inbound_win {
struct pcie_cfg_data {
const int *offsets;
- const enum pcie_soc_base soc_base;
- const bool has_phy;
- const u32 quirks;
+ enum pcie_soc_base soc_base;
+ bool has_phy;
+ u32 quirks;
u8 num_inbound_wins;
int (*perst_set)(struct brcm_pcie *pcie, u32 val);
int (*bridge_sw_init_set)(struct brcm_pcie *pcie, u32 val);
--
2.34.1