linux/drivers/gpu/drm/msm/hdmi/hdmi_phy.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2016, The Linux Foundation. All rights reserved.
 */

#include <linux/of.h>
#include <linux/platform_device.h>

#include "hdmi.h"

static int msm_hdmi_phy_resource_init(struct hdmi_phy *phy)
{}

int msm_hdmi_phy_resource_enable(struct hdmi_phy *phy)
{}

void msm_hdmi_phy_resource_disable(struct hdmi_phy *phy)
{}

void msm_hdmi_phy_powerup(struct hdmi_phy *phy, unsigned long int pixclock)
{}

void msm_hdmi_phy_powerdown(struct hdmi_phy *phy)
{}

static int msm_hdmi_phy_pll_init(struct platform_device *pdev,
			     enum hdmi_phy_type type)
{}

static int msm_hdmi_phy_probe(struct platform_device *pdev)
{}

static void msm_hdmi_phy_remove(struct platform_device *pdev)
{}

static const struct of_device_id msm_hdmi_phy_dt_match[] =;

static struct platform_driver msm_hdmi_phy_platform_driver =;

void __init msm_hdmi_phy_driver_register(void)
{}

void __exit msm_hdmi_phy_driver_unregister(void)
{}