From d39968549986aac03b7d1621d62f0637a3687429 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 10 Aug 2015 11:14:18 +0200 Subject: [PATCH] spi: Use proper compatible string for xilinx_spi driver Origin compatible string was added mostly adhoc. Add correct one which is generated by DTG. Signed-off-by: Michal Simek --- drivers/spi/xilinx_spi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xilinx_spi.c index 6c21acda576..5d2fa63209a 100644 --- a/drivers/spi/xilinx_spi.c +++ b/drivers/spi/xilinx_spi.c @@ -287,7 +287,7 @@ static const struct dm_spi_ops xilinx_spi_ops = { }; static const struct udevice_id xilinx_spi_ids[] = { - { .compatible = "xlnx,xilinx-spi" }, + { .compatible = "xlnx,xps-spi-2.00.a" }, { } }; -- 2.47.3