mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 07:12:18 +00:00
d2ebfd0519
Screw the description like that inbred T3Q
19 lines
287 B
C
19 lines
287 B
C
/* 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 */
|