-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ACPI: APD: Change name from ST to FCH
AMD SoC general pupose clk is present in new platforms with same MMIO mappings. We can reuse the same clk handler support for other platforms. Hence, changing name from ST(SoC) to FCH(IP) Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com> Acked-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
- Loading branch information
Akshu Agrawal
authored and
Rafael J. Wysocki
committed
Aug 7, 2020
1 parent
384b02d
commit d58669b
Showing
3 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
include/linux/platform_data/clk-st.h → include/linux/platform_data/clk-fch.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
/* SPDX-License-Identifier: MIT */ | ||
/* | ||
* clock framework for AMD Stoney based clock | ||
* clock framework for AMD misc clocks | ||
* | ||
* Copyright 2018 Advanced Micro Devices, Inc. | ||
*/ | ||
|
||
#ifndef __CLK_ST_H | ||
#define __CLK_ST_H | ||
#ifndef __CLK_FCH_H | ||
#define __CLK_FCH_H | ||
|
||
#include <linux/compiler.h> | ||
|
||
struct st_clk_data { | ||
struct fch_clk_data { | ||
void __iomem *base; | ||
}; | ||
|
||
#endif /* __CLK_ST_H */ | ||
#endif /* __CLK_FCH_H */ |