#include <linux/clk-provider.h>
#include <linux/of_platform.h>
#include <linux/platform_device.h>
#include "clk-mtk.h"
#include "clk-gate.h"
#include <dt-bindings/clock/mt8183-clk.h>
static const struct mtk_gate_regs audio0_cg_regs = …;
static const struct mtk_gate_regs audio1_cg_regs = …;
#define GATE_AUDIO0(_id, _name, _parent, _shift) …
#define GATE_AUDIO1(_id, _name, _parent, _shift) …
static const struct mtk_gate audio_clks[] = …;
static const struct mtk_clk_desc audio_desc = …;
static int clk_mt8183_audio_probe(struct platform_device *pdev)
{ … }
static void clk_mt8183_audio_remove(struct platform_device *pdev)
{ … }
static const struct of_device_id of_match_clk_mt8183_audio[] = …;
MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_audio);
static struct platform_driver clk_mt8183_audio_drv = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;