Skip to content

Commit e28e75e

Browse files
Wolfram Sangkwilczynski
authored andcommitted
PCI: rcar: Use correct product family name for Renesas R-Car
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>
1 parent 56ad9b2 commit e28e75e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/pci/controller/pcie-rcar-host.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ static void rcar_compose_msi_msg(struct irq_data *data, struct msi_msg *msg)
669669
}
670670

671671
static struct irq_chip rcar_msi_bottom_chip = {
672-
.name = "Rcar MSI",
672+
.name = "R-Car MSI",
673673
.irq_ack = rcar_msi_irq_ack,
674674
.irq_mask = rcar_msi_irq_mask,
675675
.irq_unmask = rcar_msi_irq_unmask,
@@ -798,7 +798,7 @@ static int rcar_pcie_enable_msi(struct rcar_pcie_host *host)
798798

799799
/*
800800
* Setup MSI data target using RC base address address, which
801-
* is guaranteed to be in the low 32bit range on any RCar HW.
801+
* is guaranteed to be in the low 32bit range on any R-Car HW.
802802
*/
803803
rcar_pci_write_reg(pcie, lower_32_bits(res.start) | MSIFE, PCIEMSIALR);
804804
rcar_pci_write_reg(pcie, upper_32_bits(res.start), PCIEMSIAUR);

0 commit comments

Comments
 (0)