linux/drivers/phy/samsung/phy-samsung-usb2.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Samsung SoC USB 1.1/2.0 PHY driver
 *
 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
 * Author: Kamil Debski <[email protected]>
 */

#include <linux/clk.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/spinlock.h>
#include "phy-samsung-usb2.h"

static int samsung_usb2_phy_power_on(struct phy *phy)
{}

static int samsung_usb2_phy_power_off(struct phy *phy)
{}

static const struct phy_ops samsung_usb2_phy_ops =;

static struct phy *samsung_usb2_phy_xlate(struct device *dev,
					const struct of_phandle_args *args)
{}

static const struct of_device_id samsung_usb2_phy_of_match[] =;
MODULE_DEVICE_TABLE(of, samsung_usb2_phy_of_match);

static int samsung_usb2_phy_probe(struct platform_device *pdev)
{}

static struct platform_driver samsung_usb2_phy_driver =;

module_platform_driver();
MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();
MODULE_ALIAS();