brintos

brintos / linux-shallow public Read only

0
0
Text · 442 B · f13fed3 Raw
19 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef _CLK_SOPHGO_SG2042_H_3#define _CLK_SOPHGO_SG2042_H_4 5#include <linux/io.h>6#include <linux/clk-provider.h>7 8/**9 * struct sg2042_clk_data - Common data of clock-controller10 * @iobase: base address of clock-controller11 * @onecell_data: used for adding providers.12 */13struct sg2042_clk_data {14	void __iomem *iobase;15	struct clk_hw_onecell_data onecell_data;16};17 18#endif /* _CLK_SOPHGO_SG2042_H_ */19