Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / drivers / gpu / drm / exynos / exynos_hdmiphy.c
blob59abb1494ceb450861a4fde4ecd621e3fd02f208
1 /*
2 * Copyright (C) 2011 Samsung Electronics Co.Ltd
3 * Authors:
4 * Seung-Woo Kim <sw0312.kim@samsung.com>
5 * Inki Dae <inki.dae@samsung.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <drm/drmP.h>
16 #include <linux/kernel.h>
17 #include <linux/i2c.h>
18 #include <linux/of.h>
20 #include "exynos_drm_drv.h"
21 #include "exynos_hdmi.h"
24 static int hdmiphy_probe(struct i2c_client *client,
25 const struct i2c_device_id *id)
27 hdmi_attach_hdmiphy_client(client);
29 dev_info(&client->adapter->dev, "attached s5p_hdmiphy "
30 "into i2c adapter successfully\n");
32 return 0;
35 static int hdmiphy_remove(struct i2c_client *client)
37 dev_info(&client->adapter->dev, "detached s5p_hdmiphy "
38 "from i2c adapter successfully\n");
40 return 0;
43 static struct of_device_id hdmiphy_match_types[] = {
45 .compatible = "samsung,exynos5-hdmiphy",
46 }, {
47 .compatible = "samsung,exynos4210-hdmiphy",
48 }, {
49 .compatible = "samsung,exynos4212-hdmiphy",
50 }, {
51 /* end node */
55 struct i2c_driver hdmiphy_driver = {
56 .driver = {
57 .name = "exynos-hdmiphy",
58 .owner = THIS_MODULE,
59 .of_match_table = hdmiphy_match_types,
61 .probe = hdmiphy_probe,
62 .remove = hdmiphy_remove,
63 .command = NULL,
65 EXPORT_SYMBOL(hdmiphy_driver);