diff options
| author | William Zhang <[email protected]> | 2023-06-07 16:37:03 -0700 |
|---|---|---|
| committer | Jagan Teki <[email protected]> | 2023-07-13 13:59:57 +0530 |
| commit | c430e697e70f44a7ae348eb8c493f15284fceb12 (patch) | |
| tree | 6a378a2608fc4513ee4879cf1fa086d738ef27eb | |
| parent | 27c4d550aaf45a9ffdd6ffe00aee854867943f29 (diff) | |
spi: bcm63xx-hsspi: Add new compatible string support
New compatible string brcm,bcmbca-hsspi-v1.0 is introduced based on
dts document brcm,bcm63xx-hsspi.yaml. Add it to the driver to support
this new binding.
Port from linux patch:
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: William Zhang <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
| -rw-r--r-- | drivers/spi/bcm63xx_hsspi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/bcm63xx_hsspi.c b/drivers/spi/bcm63xx_hsspi.c index ea34da2a316..0d12c345b1d 100644 --- a/drivers/spi/bcm63xx_hsspi.c +++ b/drivers/spi/bcm63xx_hsspi.c @@ -313,6 +313,7 @@ static const struct dm_spi_ops bcm63xx_hsspi_ops = { static const struct udevice_id bcm63xx_hsspi_ids[] = { { .compatible = "brcm,bcm6328-hsspi", }, + { .compatible = "brcm,bcmbca-hsspi-v1.0", }, { /* sentinel */ } }; |
