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:
parent
c5a56b886b
commit
9d8f9056e5
|
@ -3,6 +3,8 @@
|
|||
#ifndef AMD_COMMON_ACP_H
|
||||
#define AMD_COMMON_ACP_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
struct acp_config {
|
||||
enum {
|
||||
I2S_PINS_MAX_HDA = 0, /* HDA w/reset 3xSDI, SW w/Data0 */
|
||||
|
|
|
@ -3,9 +3,9 @@
|
|||
#ifndef AMD_BLOCK_CHIP_H
|
||||
#define AMD_BLOCK_CHIP_H
|
||||
|
||||
#include <amdblocks/acp.h>
|
||||
#include <amdblocks/espi.h>
|
||||
#include <amdblocks/spi.h>
|
||||
#include <amdblocks/acp.h>
|
||||
#include <stdint.h>
|
||||
|
||||
struct soc_amd_common_config {
|
||||
|
|
Loading…
Reference in New Issue