linux/drivers/clk/sprd/mux.c

// SPDX-License-Identifier: GPL-2.0
//
// Spreadtrum multiplexer clock driver
//
// Copyright (C) 2017 Spreadtrum, Inc.
// Author: Chunyan Zhang <[email protected]>

#include <linux/clk.h>
#include <linux/clk-provider.h>
#include <linux/regmap.h>

#include "mux.h"

u8 sprd_mux_helper_get_parent(const struct sprd_clk_common *common,
			      const struct sprd_mux_ssel *mux)
{}
EXPORT_SYMBOL_GPL();

static u8 sprd_mux_get_parent(struct clk_hw *hw)
{}

int sprd_mux_helper_set_parent(const struct sprd_clk_common *common,
			       const struct sprd_mux_ssel *mux,
			       u8 index)
{}
EXPORT_SYMBOL_GPL();

static int sprd_mux_set_parent(struct clk_hw *hw, u8 index)
{}

const struct clk_ops sprd_mux_ops =;
EXPORT_SYMBOL_GPL();