diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c index 653f82984216c30ae9f733a84bdb8ea9d6c824b9..adbd7f040ccf7b8d02e7357c241fcdd6ac0593a4 100644 --- a/drivers/spi/spidev.c +++ b/drivers/spi/spidev.c @@ -711,6 +711,7 @@ static const struct spi_device_id spidev_spi_ids[] = { { .name = "spi-authenta" }, { .name = "em3581" }, { .name = "si3210" }, + { .name = "user-spi" }, {}, }; MODULE_DEVICE_TABLE(spi, spidev_spi_ids); @@ -736,6 +737,7 @@ static const struct of_device_id spidev_dt_ids[] = { { .compatible = "lwn,bk4", .data = &spidev_of_check }, { .compatible = "menlo,m53cpld", .data = &spidev_of_check }, { .compatible = "micron,spi-authenta", .data = &spidev_of_check }, + { .compatible = "kontron,user-spi", .data = &spidev_of_check }, { .compatible = "rohm,bh2228fv", .data = &spidev_of_check }, { .compatible = "rohm,dh2228fv", .data = &spidev_of_check }, { .compatible = "semtech,sx1301", .data = &spidev_of_check },