mmc: sdhci-msm: Fix compatible list termination

Compatible list should be terminated with NULL entry, fix it.

Change-Id: Id9be4fa95fd1cbbbe28a3c63b63bbd6c8c29fa85
Signed-off-by: Venkat Gopalakrishnan <venkatg@codeaurora.org>
This commit is contained in:
Venkat Gopalakrishnan 2015-06-25 12:00:02 -07:00 committed by Subhash Jadavani
parent fda56078bb
commit 398aedae58

View file

@ -3537,6 +3537,7 @@ static const struct dev_pm_ops sdhci_msm_pmops = {
#endif #endif
static const struct of_device_id sdhci_msm_dt_match[] = { static const struct of_device_id sdhci_msm_dt_match[] = {
{.compatible = "qcom,sdhci-msm"}, {.compatible = "qcom,sdhci-msm"},
{},
}; };
MODULE_DEVICE_TABLE(of, sdhci_msm_dt_match); MODULE_DEVICE_TABLE(of, sdhci_msm_dt_match);