#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/pm_opp.h>
#include <linux/regmap.h>
#include <linux/module.h>
#include "clk-pll.h"
#include "clk-regmap.h"
static const struct pll_freq_tbl a53pll_freq[] = …;
static const struct regmap_config a53pll_regmap_config = …;
static struct pll_freq_tbl *qcom_a53pll_get_freq_tbl(struct device *dev)
{ … }
static int qcom_a53pll_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id qcom_a53pll_match_table[] = …;
MODULE_DEVICE_TABLE(of, qcom_a53pll_match_table);
static struct platform_driver qcom_a53pll_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;