diff options
author | William Zhang <william.zhang@broadcom.com> | 2023-02-07 07:58:16 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-02-09 16:00:46 +0100 |
commit | 99d7428ac94bf67d6e9df81dd3b4bf3046196ad6 (patch) | |
tree | 867737e1b0cf976f885b8e19259e146d6d21305b | |
parent | spi: Add bcmbca-hsspi controller bindings (diff) | |
download | linux-99d7428ac94bf67d6e9df81dd3b4bf3046196ad6.tar.xz linux-99d7428ac94bf67d6e9df81dd3b4bf3046196ad6.zip |
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.
Signed-off-by: William Zhang <william.zhang@broadcom.com>
Link: https://lore.kernel.org/r/20230207065826.285013-6-william.zhang@broadcom.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-bcm63xx-hsspi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/spi/spi-bcm63xx-hsspi.c b/drivers/spi/spi-bcm63xx-hsspi.c index b871fd810d80..01d5acad4a1b 100644 --- a/drivers/spi/spi-bcm63xx-hsspi.c +++ b/drivers/spi/spi-bcm63xx-hsspi.c @@ -516,6 +516,7 @@ static SIMPLE_DEV_PM_OPS(bcm63xx_hsspi_pm_ops, bcm63xx_hsspi_suspend, static const struct of_device_id bcm63xx_hsspi_of_match[] = { { .compatible = "brcm,bcm6328-hsspi", }, + { .compatible = "brcm,bcmbca-hsspi-v1.0", }, { }, }; MODULE_DEVICE_TABLE(of, bcm63xx_hsspi_of_match); |