aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2013-09-27 17:19:39 +0530
committerTushar Behera <tushar.behera@linaro.org>2013-12-10 11:56:09 +0530
commit9e0bdd730db426706a07d7f47d2b4d52b0faadf3 (patch)
treef4231c812fe623b4f560d5fcaddbfcd992272ad5
parentcce55128805cacc95a3c01633cda36ce93517f46 (diff)
drm: hdmiphy: Add necessary i2c_device_id tabletracking-samslt-all-ll-20131210.0
Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--drivers/gpu/drm/exynos/exynos_hdmiphy.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmiphy.c b/drivers/gpu/drm/exynos/exynos_hdmiphy.c
index 59abb1494ceb..b2848afff183 100644
--- a/drivers/gpu/drm/exynos/exynos_hdmiphy.c
+++ b/drivers/gpu/drm/exynos/exynos_hdmiphy.c
@@ -52,14 +52,22 @@ static struct of_device_id hdmiphy_match_types[] = {
}
};
+static const struct i2c_device_id hdmiphy_id[] = {
+ { "exynos5-hdmiphy", 0 },
+ { "exynos4210-hdmiphy", 0 },
+ { "exynos4212-hdmiphy", 0 },
+};
+
struct i2c_driver hdmiphy_driver = {
.driver = {
.name = "exynos-hdmiphy",
.owner = THIS_MODULE,
.of_match_table = hdmiphy_match_types,
},
+ .id_table = hdmiphy_id,
.probe = hdmiphy_probe,
.remove = hdmiphy_remove,
.command = NULL,
};
+
EXPORT_SYMBOL(hdmiphy_driver);