Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.16 18 lines 286 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * clock framework for AMD misc clocks 4 * 5 * Copyright 2018 Advanced Micro Devices, Inc. 6 */ 7 8#ifndef __CLK_FCH_H 9#define __CLK_FCH_H 10 11#include <linux/compiler.h> 12 13struct fch_clk_data { 14 void __iomem *base; 15 u32 is_rv; 16}; 17 18#endif /* __CLK_FCH_H */