Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 8a749fd1a8720d4619c91c8b6e7528c0a355c0aa authored by Linus Torvalds on 01 October 2023, 21:15:13 UTC
Linux 6.6-rc4
Tip revision: 8a749fd
clk-fch.h
/* SPDX-License-Identifier: MIT */
/*
 * clock framework for AMD misc clocks
 *
 * Copyright 2018 Advanced Micro Devices, Inc.
 */

#ifndef __CLK_FCH_H
#define __CLK_FCH_H

#include <linux/compiler.h>

struct fch_clk_data {
	void __iomem *base;
	char *name;
};

#endif /* __CLK_FCH_H */
back to top