#include <linux/clk-provider.h>
#include <linux/platform_device.h>
#include <linux/pm_clock.h>
#include <linux/pm_runtime.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,lpass-sc7280.h>
#include "clk-regmap.h"
#include "clk-branch.h"
#include "common.h"
static struct clk_branch lpass_top_cc_lpi_q6_axim_hs_clk = …;
static struct clk_branch lpass_qdsp6ss_core_clk = …;
static struct clk_branch lpass_qdsp6ss_xo_clk = …;
static struct clk_branch lpass_qdsp6ss_sleep_clk = …;
static struct regmap_config lpass_regmap_config = …;
static struct clk_regmap *lpass_cc_top_sc7280_clocks[] = …;
static const struct qcom_cc_desc lpass_cc_top_sc7280_desc = …;
static struct clk_regmap *lpass_qdsp6ss_sc7280_clocks[] = …;
static const struct qcom_cc_desc lpass_qdsp6ss_sc7280_desc = …;
static int lpass_cc_sc7280_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id lpass_cc_sc7280_match_table[] = …;
MODULE_DEVICE_TABLE(of, lpass_cc_sc7280_match_table);
static struct platform_driver lpass_cc_sc7280_driver = …;
static int __init lpass_cc_sc7280_init(void)
{ … }
subsys_initcall(lpass_cc_sc7280_init);
static void __exit lpass_cc_sc7280_exit(void)
{ … }
module_exit(lpass_cc_sc7280_exit);
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;