[PATCH 5/6] ata: i.MX sata: Add devicetree probe support
Sascha Hauer
s.hauer at pengutronix.de
Thu Jun 6 10:22:38 EDT 2013
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
drivers/ata/sata-imx.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/ata/sata-imx.c b/drivers/ata/sata-imx.c
index 13bf116..ef7989e 100644
--- a/drivers/ata/sata-imx.c
+++ b/drivers/ata/sata-imx.c
@@ -141,9 +141,22 @@ static struct platform_device_id imx_sata_ids[] = {
},
};
+static __maybe_unused struct of_device_id imx_sata_dt_ids[] = {
+ {
+ .compatible = "fsl,imx6q-ahci",
+ .data = (unsigned long)&data_imx6,
+ }, {
+ .compatible = "fsl,imx53-ahci",
+ .data = (unsigned long)&data_imx53,
+ }, {
+ /* sentinel */
+ }
+};
+
static struct driver_d imx_sata_driver = {
.name = "imx-sata",
.probe = imx_sata_probe,
.id_table = imx_sata_ids,
+ .of_compatible = DRV_OF_COMPAT(imx_sata_dt_ids),
};
device_platform_driver(imx_sata_driver);
--
1.8.2.rc2
More information about the barebox
mailing list