diff options
| author | Lukas Funke <lukas.funke@weidmueller.com> | 2023-04-28 14:38:47 +0200 | 
|---|---|---|
| committer | Jagan Teki <jagan@edgeble.ai> | 2023-07-13 13:59:57 +0530 | 
| commit | ad77009d22866a708b25e596a8b59e207157af71 (patch) | |
| tree | 8a0c15bb236baf8f08591442ea2c83a18c00fec0 | |
| parent | bf5152d0108683bbaabf9d7a7988f61649fc33f4 (diff) | |
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>
| -rw-r--r-- | drivers/spi/pl022_spi.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/spi/pl022_spi.c b/drivers/spi/pl022_spi.c index 828eab3d342..2986c4eb5ac 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 | 
