// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2014, The Linux Foundation. All rights reserved. */ #include <linux/kernel.h> #include <linux/bitops.h> #include <linux/regmap.h> #include <linux/export.h> #include "clk-regmap-mux.h" static inline struct clk_regmap_mux *to_clk_regmap_mux(struct clk_hw *hw) { … } static u8 mux_get_parent(struct clk_hw *hw) { … } static int mux_set_parent(struct clk_hw *hw, u8 index) { … } const struct clk_ops clk_regmap_mux_closest_ops = …; EXPORT_SYMBOL_GPL(…);