diff options
author | Jim Quinlan <[email protected]> | 2024-08-15 18:57:21 -0400 |
---|---|---|
committer | Krzysztof Wilczyński <[email protected]> | 2024-09-04 13:59:28 +0000 |
commit | 0d8046037610dcf9e59ece73bf4bbcec1e6a878b (patch) | |
tree | 8d7535560582dc9115c776a64e3ab67faa17130b | |
parent | 30eb2080fe2043c3e61c1ae4bb6917800b10fb08 (diff) |
PCI: brcmstb: Remove two unused constants from driver
Remove two constants in the driver which are no longer
used: RGR1_SW_INIT_1_INIT_MASK and RGR1_SW_INIT_1_INIT_SHIFT.
Link: https://lore.kernel.org/linux-pci/[email protected]
Signed-off-by: Jim Quinlan <[email protected]>
Signed-off-by: Krzysztof Wilczyński <[email protected]>
Tested-by: Florian Fainelli <[email protected]>
Reviewed-by: Stanimir Varbanov <[email protected]>
Reviewed-by: Florian Fainelli <[email protected]>
Reviewed-by: Manivannan Sadhasivam <[email protected]>
Reviewed-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | drivers/pci/controller/pcie-brcmstb.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/pci/controller/pcie-brcmstb.c b/drivers/pci/controller/pcie-brcmstb.c index 9d31dd29e831..510d982bbf92 100644 --- a/drivers/pci/controller/pcie-brcmstb.c +++ b/drivers/pci/controller/pcie-brcmstb.c @@ -210,11 +210,6 @@ enum { PCIE_INTR2_CPU_BASE, }; -enum { - RGR1_SW_INIT_1_INIT_MASK, - RGR1_SW_INIT_1_INIT_SHIFT, -}; - enum pcie_type { GENERIC, BCM7425, |