soc/amd/common/block: Fix missing include in acp.h

We were missing the stdint.h header, and the header was sorted
incorrectly in chip.h

BUG=non
TEST=build guybrush

Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: I209d3c9c48e5b06b2a56759af51cf2858eb99f51
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54922
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Raul E Rangel 2021-05-25 10:05:05 -06:00 committed by Raul Rangel
parent c5a56b886b
commit 9d8f9056e5
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@
#ifndef AMD_COMMON_ACP_H #ifndef AMD_COMMON_ACP_H
#define AMD_COMMON_ACP_H #define AMD_COMMON_ACP_H
#include <stdint.h>
struct acp_config { struct acp_config {
enum { enum {
I2S_PINS_MAX_HDA = 0, /* HDA w/reset 3xSDI, SW w/Data0 */ I2S_PINS_MAX_HDA = 0, /* HDA w/reset 3xSDI, SW w/Data0 */

View File

@ -3,9 +3,9 @@
#ifndef AMD_BLOCK_CHIP_H #ifndef AMD_BLOCK_CHIP_H
#define AMD_BLOCK_CHIP_H #define AMD_BLOCK_CHIP_H
#include <amdblocks/acp.h>
#include <amdblocks/espi.h> #include <amdblocks/espi.h>
#include <amdblocks/spi.h> #include <amdblocks/spi.h>
#include <amdblocks/acp.h>
#include <stdint.h> #include <stdint.h>
struct soc_amd_common_config { struct soc_amd_common_config {