From: Lukas Funke Date: Fri, 28 Apr 2023 12:38:47 +0000 (+0200) Subject: spi: pl022: Align compatible property with device tree binding X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=ad77009d22866a708b25e596a8b59e207157af71;p=u-boot.git spi: pl022: Align compatible property with device tree binding Align the compatible property with the kernel device tree binding [1] by removing the '-spi' suffix. [1] https://www.kernel.org/doc/Documentation/devicetree/bindings/spi/spi-pl022.yaml Signed-off-by: Lukas Funke Signed-off-by: Stefan Herbrechtsmeier Reviewed-by: Jagan Teki --- diff --git a/drivers/spi/pl022_spi.c b/drivers/spi/pl022_spi.c index 828eab3d34..2986c4eb5a 100644 --- a/drivers/spi/pl022_spi.c +++ b/drivers/spi/pl022_spi.c @@ -307,7 +307,7 @@ static int pl022_spi_of_to_plat(struct udevice *bus) } static const struct udevice_id pl022_spi_ids[] = { - { .compatible = "arm,pl022-spi" }, + { .compatible = "arm,pl022" }, { } }; #endif