#include <linux/clk-provider.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include "clk-alpha-pll.h"
static struct clk_alpha_pll ipq_pll_huayra = …;
static struct clk_alpha_pll ipq_pll_stromer = …;
static struct clk_alpha_pll ipq_pll_stromer_plus = …;
static const struct alpha_pll_config ipq5018_pll_config = …;
static const struct alpha_pll_config ipq5332_pll_config = …;
static const struct alpha_pll_config ipq6018_pll_config = …;
static const struct alpha_pll_config ipq8074_pll_config = …;
static const struct alpha_pll_config ipq9574_pll_config = …;
struct apss_pll_data { … };
static const struct apss_pll_data ipq5018_pll_data = …;
static const struct apss_pll_data ipq5332_pll_data = …;
static const struct apss_pll_data ipq8074_pll_data = …;
static const struct apss_pll_data ipq6018_pll_data = …;
static const struct apss_pll_data ipq9574_pll_data = …;
static const struct regmap_config ipq_pll_regmap_config = …;
static int apss_ipq_pll_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id apss_ipq_pll_match_table[] = …;
MODULE_DEVICE_TABLE(of, apss_ipq_pll_match_table);
static struct platform_driver apss_ipq_pll_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;