linux/drivers/phy/broadcom/phy-bcm-ns-usb2.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 * Broadcom Northstar USB 2.0 PHY Driver
 *
 * Copyright (C) 2016 Rafał Miłecki <[email protected]>
 */

#include <linux/bcma/bcma.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/err.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>
#include <linux/phy/phy.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/slab.h>

struct bcm_ns_usb2 {};

static int bcm_ns_usb2_phy_init(struct phy *phy)
{}

static const struct phy_ops ops =;

static int bcm_ns_usb2_probe(struct platform_device *pdev)
{}

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

static struct platform_driver bcm_ns_usb2_driver =;
module_platform_driver();

MODULE_DESCRIPTION();
MODULE_LICENSE();