summaryrefslogtreecommitdiff
path: root/drivers/spi/pl022_spi.c
diff options
context:
space:
mode:
authorLukas Funke <lukas.funke@weidmueller.com>2023-04-28 15:38:47 +0300
committerJagan Teki <jagan@edgeble.ai>2023-07-13 11:29:57 +0300
commitad77009d22866a708b25e596a8b59e207157af71 (patch)
tree8a0c15bb236baf8f08591442ea2c83a18c00fec0 /drivers/spi/pl022_spi.c
parentbf5152d0108683bbaabf9d7a7988f61649fc33f4 (diff)
downloadu-boot-ad77009d22866a708b25e596a8b59e207157af71.tar.xz
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 <lukas.funke@weidmueller.com> Signed-off-by: Stefan Herbrechtsmeier <stefan.herbrechtsmeier@weidmueller.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'drivers/spi/pl022_spi.c')
-rw-r--r--drivers/spi/pl022_spi.c2
1 files changed, 1 insertions, 1 deletions
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