linux/drivers/gpu/drm/sun4i/sun6i_drc.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Copyright (C) 2016 Free Electrons
 *
 * Maxime Ripard <[email protected]>
 */

#include <linux/clk.h>
#include <linux/component.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset.h>

struct sun6i_drc {};

static int sun6i_drc_bind(struct device *dev, struct device *master,
			 void *data)
{}

static void sun6i_drc_unbind(struct device *dev, struct device *master,
			    void *data)
{}

static const struct component_ops sun6i_drc_ops =;

static int sun6i_drc_probe(struct platform_device *pdev)
{}

static void sun6i_drc_remove(struct platform_device *pdev)
{}

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

static struct platform_driver sun6i_drc_platform_driver =;
module_platform_driver();

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