mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 09:12:07 +00:00
7fdb98e8a7
Add a new device property to fetch clk-name from firmware. Signed-off-by: Ajit Kumar Pandey <AjitKumar.Pandey@amd.com> Reviewed-by: Mario Limonciello <Mario.Limonciello@amd.com> Link: https://lore.kernel.org/r/20211212180527.1641362-4-AjitKumar.Pandey@amd.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
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 */
|