Message ID | 20130717012247.GA2797@verge.net.au (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Simon, On Tue, Jul 16 2013, Simon Horman wrote: >> Thanks, I have queued this up for v3.12 in the dt branch. >> It should appear in renesas-next-20130710 > > Reviewing this, I now think that it should got through the MMC tree. > Chris, could you consider the patch below? > > From: Guennadi Liakhovetski <g.liakhovetski@gmx.de> > > mmc: SDHI: add DT compatibility strings for further SoCs > > Add further OF compatibility strings to the SDHI driver to be able to > precisely control driver's behaviour on each of them. > > Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com> > Acked-by: Magnus Damm <damm@opensource.se> > Acked-by: Simon Horman <horms@verge.net.au> Sorry for the delay -- this is in mmc-next for 3.12 now. Thanks, - Chris.
diff --git a/drivers/mmc/host/sh_mobile_sdhi.c b/drivers/mmc/host/sh_mobile_sdhi.c index ebea749..afa1bba 100644 --- a/drivers/mmc/host/sh_mobile_sdhi.c +++ b/drivers/mmc/host/sh_mobile_sdhi.c @@ -129,7 +129,12 @@ static const struct sh_mobile_sdhi_ops sdhi_ops = { static const struct of_device_id sh_mobile_sdhi_of_match[] = { { .compatible = "renesas,shmobile-sdhi" }, { .compatible = "renesas,sh7372-sdhi" }, + { .compatible = "renesas,sh73a0-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, + { .compatible = "renesas,r8a73a4-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, { .compatible = "renesas,r8a7740-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, + { .compatible = "renesas,r8a7778-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, + { .compatible = "renesas,r8a7779-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, + { .compatible = "renesas,r8a7790-sdhi", .data = &sh_mobile_sdhi_of_cfg[0], }, {}, }; MODULE_DEVICE_TABLE(of, sh_mobile_sdhi_of_match);