]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
PCI: sky1: Use boolean true for is_rc field
authorHans Zhang <18255117159@163.com>
Sun, 15 Mar 2026 15:53:51 +0000 (23:53 +0800)
committerManivannan Sadhasivam <mani@kernel.org>
Thu, 26 Mar 2026 18:09:12 +0000 (23:39 +0530)
The is_rc field in struct cdns_pcie is of type bool. Replace the
integer assignment (1) with the boolean literal true to improve
code clarity and maintain consistency with the type definition.

Signed-off-by: Hans Zhang <18255117159@163.com>
Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
Link: https://patch.msgid.link/20260315155351.127078-1-18255117159@163.com
drivers/pci/controller/cadence/pci-sky1.c

index 9853a9c82c0e67a44b7278d822f5ab276ba4bba2..cd55c64e58a93aa0d6a246bffad699bb8320db8e 100644 (file)
@@ -173,7 +173,7 @@ static int sky1_pcie_probe(struct platform_device *pdev)
        cdns_pcie->ops = &sky1_pcie_ops;
        cdns_pcie->reg_base = pcie->reg_base;
        cdns_pcie->msg_res = pcie->msg_res;
-       cdns_pcie->is_rc = 1;
+       cdns_pcie->is_rc = true;
 
        reg_off = devm_kzalloc(dev, sizeof(*reg_off), GFP_KERNEL);
        if (!reg_off) {