PCI: rcar: Use correct product family name for Renesas R-Car
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Wed, 7 Jun 2023 20:47:50 +0000 (22:47 +0200)
committerKrzysztof Wilczyński <kwilczynski@kernel.org>
Sat, 24 Jun 2023 13:15:51 +0000 (13:15 +0000)
Renesas uses "R-Car" as the name for their product family and development
platform. Thus, correct other variants such as "rcar", "RCar", "Rcar",
etc., to the preferred spelling.

[kwilczynski: commit log]
Link: https://lore.kernel.org/linux-pci/20230607204750.27837-1-wsa+renesas@sang-engineering.com
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/pci/controller/pcie-rcar-host.c

index 7ffcd0f..88975e4 100644 (file)
@@ -669,7 +669,7 @@ static void rcar_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
 }
 
 static struct irq_chip rcar_msi_bottom_chip = {
-       .name                   = "Rcar MSI",
+       .name                   = "R-Car MSI",
        .irq_ack                = rcar_msi_irq_ack,
        .irq_mask               = rcar_msi_irq_mask,
        .irq_unmask             = rcar_msi_irq_unmask,
@@ -798,7 +798,7 @@ static int rcar_pcie_enable_msi(struct rcar_pcie_host *host)
 
        /*
         * Setup MSI data target using RC base address address, which
-        * is guaranteed to be in the low 32bit range on any RCar HW.
+        * is guaranteed to be in the low 32bit range on any R-Car HW.
         */
        rcar_pci_write_reg(pcie, lower_32_bits(res.start) | MSIFE, PCIEMSIALR);
        rcar_pci_write_reg(pcie, upper_32_bits(res.start), PCIEMSIAUR);