Commit 76de51a6da0411e1f3e80e1c9a2ef5bfa8e35571

Authored by Michal Simek
Committed by Jagan Teki
1 parent fe94b48de2

spi: xilinx: Add new compatible strings

Add xlnx,xps-spi-2.00.a/b which is compatible string
listed in the Linux kernel.
Remove origin one which has no real background.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Jagan Teki <jteki@openedev.com>

Showing 1 changed file with 2 additions and 1 deletions Side-by-side Diff

drivers/spi/xilinx_spi.c
... ... @@ -287,7 +287,8 @@
287 287 };
288 288  
289 289 static const struct udevice_id xilinx_spi_ids[] = {
290   - { .compatible = "xlnx,xilinx-spi" },
  290 + { .compatible = "xlnx,xps-spi-2.00.a" },
  291 + { .compatible = "xlnx,xps-spi-2.00.b" },
291 292 { }
292 293 };
293 294