swh:1:snp:77163734605b0ec556b01d897b7bb4a7e30d46b6
Raw File
Tip revision: bcf876870b95592b52519ed4aafcf9d95999bc9c authored by Linus Torvalds on 02 August 2020, 21:21:45 UTC
Linux 5.8
Tip revision: bcf8768
clk-regmap-mux.h
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2014, The Linux Foundation. All rights reserved.
 */

#ifndef __QCOM_CLK_REGMAP_MUX_H__
#define __QCOM_CLK_REGMAP_MUX_H__

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

struct clk_regmap_mux {
	u32			reg;
	u32			shift;
	u32			width;
	const struct parent_map	*parent_map;
	struct clk_regmap	clkr;
};

extern const struct clk_ops clk_regmap_mux_closest_ops;

#endif
back to top