https://github.com/torvalds/linux
Raw File
Tip revision: b401b621758e46812da61fa58a67c3fd8d91de0d authored by Linus Torvalds on 18 February 2024, 20:56:25 UTC
Linux 6.8-rc5
Tip revision: b401b62
sclk-div.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (c) 2018 BayLibre, SAS.
 * Author: Jerome Brunet <jbrunet@baylibre.com>
 */

#ifndef __MESON_SCLK_DIV_H
#define __MESON_SCLK_DIV_H

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

struct meson_sclk_div_data {
	struct parm div;
	struct parm hi;
	unsigned int cached_div;
	struct clk_duty cached_duty;
};

extern const struct clk_ops meson_sclk_div_ops;

#endif /* __MESON_SCLK_DIV_H */
back to top