#include <linux/clk-provider.h>
#include <linux/platform_device.h>
#include <linux/module.h>
#include <linux/of_address.h>
#include <linux/regmap.h>
#include <dt-bindings/clock/qcom,lpass-sdm845.h>
#include "clk-regmap.h"
#include "clk-branch.h"
#include "common.h"
static struct clk_branch lpass_q6ss_ahbm_aon_clk = …;
static struct clk_branch lpass_q6ss_ahbs_aon_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_sdm845_clocks[] = …;
static const struct qcom_cc_desc lpass_cc_sdm845_desc = …;
static struct clk_regmap *lpass_qdsp6ss_sdm845_clocks[] = …;
static const struct qcom_cc_desc lpass_qdsp6ss_sdm845_desc = …;
static int lpass_cc_sdm845_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id lpass_cc_sdm845_match_table[] = …;
MODULE_DEVICE_TABLE(of, lpass_cc_sdm845_match_table);
static struct platform_driver lpass_cc_sdm845_driver = …;
static int __init lpass_cc_sdm845_init(void)
{ … }
subsys_initcall(lpass_cc_sdm845_init);
static void __exit lpass_cc_sdm845_exit(void)
{ … }
module_exit(lpass_cc_sdm845_exit);
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;