soc/amd/picasso/include/soc_util: add include guards
Change-Id: I2de16eaa88baace28afa30345b7762353a48ab87 Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41558 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
5b01f2bf0c
commit
5640cfdc92
|
@ -1,5 +1,8 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
#ifndef __PICASSO_SOC_UTIL_H__
|
||||
#define __PICASSO_SOC_UTIL_H__
|
||||
|
||||
enum socket_type {
|
||||
SOCKET_FP5 = 0,
|
||||
SOCKET_AM4 = 2,
|
||||
|
@ -13,3 +16,5 @@ int soc_is_dali(void);
|
|||
int soc_is_picasso(void);
|
||||
int soc_is_raven2(void);
|
||||
int soc_is_zen_plus(void);
|
||||
|
||||
#endif /* __PICASSO_SOC_UTIL_H__ */
|
||||
|
|
Loading…
Reference in New Issue