• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_PHOENIX_SOC_UTIL_H
4 #define AMD_PHOENIX_SOC_UTIL_H
5 
6 enum soc_type {
7 	SOC_PHOENIX,
8 	SOC_PHOENIX2,
9 	SOC_UNKNOWN,
10 };
11 
12 enum soc_type get_soc_type(void);
13 
14 #endif /* AMD_PHOENIX_SOC_UTIL_H */
15