ASoC: ssm2602: add device tree bindings
[deliverable/linux.git] / sound / soc / codecs / ssm2602-spi.c
index 2bf55e24a7bbfce316cc90a3431beca554bd7b8a..b5df14fbe3adabd9f0604b0af536caa4df6182e6 100644 (file)
@@ -26,10 +26,17 @@ static int ssm2602_spi_remove(struct spi_device *spi)
        return 0;
 }
 
+static const struct of_device_id ssm2602_of_match[] = {
+       { .compatible = "adi,ssm2602", },
+       { }
+};
+MODULE_DEVICE_TABLE(of, ssm2602_of_match);
+
 static struct spi_driver ssm2602_spi_driver = {
        .driver = {
                .name   = "ssm2602",
                .owner  = THIS_MODULE,
+               .of_match_table = ssm2602_of_match,
        },
        .probe          = ssm2602_spi_probe,
        .remove         = ssm2602_spi_remove,
This page took 0.03001 seconds and 5 git commands to generate.