#include <linux/clk-provider.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
#include "clk-mtk.h"
#include "clk-gate.h"
#include <dt-bindings/clock/mt8192-clk.h>
static const struct mtk_gate_regs mdp0_cg_regs = …;
static const struct mtk_gate_regs mdp1_cg_regs = …;
#define GATE_MDP0(_id, _name, _parent, _shift) …
#define GATE_MDP1(_id, _name, _parent, _shift) …
static const struct mtk_gate mdp_clks[] = …;
static const struct mtk_clk_desc mdp_desc = …;
static const struct of_device_id of_match_clk_mt8192_mdp[] = …;
MODULE_DEVICE_TABLE(of, of_match_clk_mt8192_mdp);
static struct platform_driver clk_mt8192_mdp_drv = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;