// SPDX-License-Identifier: GPL-2.0+ // // OWL common clock driver // // Copyright (c) 2014 Actions Semi Inc. // Author: David Liu <[email protected]> // // Copyright (c) 2018 Linaro Ltd. // Author: Manivannan Sadhasivam <[email protected]> #include <linux/platform_device.h> #include <linux/regmap.h> #include "owl-common.h" static const struct regmap_config owl_regmap_config = …; static void owl_clk_set_regmap(const struct owl_clk_desc *desc, struct regmap *regmap) { … } int owl_clk_regmap_init(struct platform_device *pdev, struct owl_clk_desc *desc) { … } int owl_clk_probe(struct device *dev, struct clk_hw_onecell_data *hw_clks) { … }