linux/drivers/usb/dwc3/dwc3-of-simple.c

// SPDX-License-Identifier: GPL-2.0
/*
 * dwc3-of-simple.c - OF glue layer for simple integrations
 *
 * Copyright (c) 2015 Texas Instruments Incorporated - https://www.ti.com
 *
 * Author: Felipe Balbi <[email protected]>
 *
 * This is a combination of the old dwc3-qcom.c by Ivan T. Ivanov
 * <[email protected]> and the original patch adding support for Xilinx' SoC
 * by Subbaraya Sundeep Bhatta <[email protected]>
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <linux/clk.h>
#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/pm_runtime.h>
#include <linux/reset.h>

struct dwc3_of_simple {};

static int dwc3_of_simple_probe(struct platform_device *pdev)
{}

static void __dwc3_of_simple_teardown(struct dwc3_of_simple *simple)
{}

static void dwc3_of_simple_remove(struct platform_device *pdev)
{}

static void dwc3_of_simple_shutdown(struct platform_device *pdev)
{}

static int __maybe_unused dwc3_of_simple_runtime_suspend(struct device *dev)
{}

static int __maybe_unused dwc3_of_simple_runtime_resume(struct device *dev)
{}

static int __maybe_unused dwc3_of_simple_suspend(struct device *dev)
{}

static int __maybe_unused dwc3_of_simple_resume(struct device *dev)
{}

static const struct dev_pm_ops dwc3_of_simple_dev_pm_ops =;

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

static struct platform_driver dwc3_of_simple_driver =;

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