diff options
author | Akinobu Mita <mita@fixstars.com> | 2013-06-26 22:39:32 +0530 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-06-28 13:15:27 -0700 |
commit | 2e2930a3449f1fe3806e26c4391a71097cae43f3 (patch) | |
tree | 54536c6a953d6e302d72742e71499a663ed44067 | |
parent | 2953f850c3b80bdca004967c83733365d8aa0aa2 (diff) | |
download | linux-2e2930a3449f1fe3806e26c4391a71097cae43f3.tar.bz2 |
[SCSI] ufshcd-pltfrm: add missing empty slot in ufs_of_match[]
of_match_table member in struct device_driver must be terminated by
empty slot as a sentinel.
Signed-off-by: Akinobu Mita <mita@fixstars.com>
Signed-off-by: Santosh Y <santoshsy@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r-- | drivers/scsi/ufs/ufshcd-pltfrm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/ufs/ufshcd-pltfrm.c b/drivers/scsi/ufs/ufshcd-pltfrm.c index 0e48827c86bd..6829a160869f 100644 --- a/drivers/scsi/ufs/ufshcd-pltfrm.c +++ b/drivers/scsi/ufs/ufshcd-pltfrm.c @@ -157,6 +157,7 @@ static int ufshcd_pltfrm_remove(struct platform_device *pdev) static const struct of_device_id ufs_of_match[] = { { .compatible = "jedec,ufs-1.1"}, + {}, }; static const struct dev_pm_ops ufshcd_dev_pm_ops = { |