#include <linux/err.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/mfd/syscon.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/soc/samsung/exynos-regs-pmu.h>
struct exynos_dp_video_phy_drvdata { … };
struct exynos_dp_video_phy { … };
static int exynos_dp_video_phy_power_on(struct phy *phy)
{ … }
static int exynos_dp_video_phy_power_off(struct phy *phy)
{ … }
static const struct phy_ops exynos_dp_video_phy_ops = …;
static const struct exynos_dp_video_phy_drvdata exynos5250_dp_video_phy = …;
static const struct exynos_dp_video_phy_drvdata exynos5420_dp_video_phy = …;
static const struct of_device_id exynos_dp_video_phy_of_match[] = …;
MODULE_DEVICE_TABLE(of, exynos_dp_video_phy_of_match);
static int exynos_dp_video_phy_probe(struct platform_device *pdev)
{ … }
static struct platform_driver exynos_dp_video_phy_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;