drm: exynos: hdmi: add support for exynos5 hdmiphy
This patch adds support for exynos5 hdmi phy with device tree enabled. Signed-off-by: Rahul Sharma <rahul.sharma@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
This commit is contained in:
parent
9ff15948c5
commit
93c645ee14
1 changed files with 11 additions and 1 deletions
|
@ -42,13 +42,23 @@ static int hdmiphy_remove(struct i2c_client *client)
|
||||||
|
|
||||||
static const struct i2c_device_id hdmiphy_id[] = {
|
static const struct i2c_device_id hdmiphy_id[] = {
|
||||||
{ "s5p_hdmiphy", 0 },
|
{ "s5p_hdmiphy", 0 },
|
||||||
|
{ "exynos5-hdmiphy", 0 },
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct of_device_id hdmiphy_match_types[] = {
|
||||||
|
{
|
||||||
|
.compatible = "samsung,exynos5-hdmiphy",
|
||||||
|
}, {
|
||||||
|
/* end node */
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
struct i2c_driver hdmiphy_driver = {
|
struct i2c_driver hdmiphy_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "s5p-hdmiphy",
|
.name = "exynos-hdmiphy",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.of_match_table = hdmiphy_match_types,
|
||||||
},
|
},
|
||||||
.id_table = hdmiphy_id,
|
.id_table = hdmiphy_id,
|
||||||
.probe = hdmiphy_probe,
|
.probe = hdmiphy_probe,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue