diff options
author | Furquan Shaikh <furquan@google.com> | 2020-04-28 21:04:54 -0700 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2020-04-30 20:59:36 +0000 |
commit | 38206886e6bce457789c4ec93956e27a235fd862 (patch) | |
tree | 1e7bb42ce6fd219299909d4f20c7e0504b56d3bc /src/soc/amd/common | |
parent | 00961676fd399252e6ef1178dcda8391085694e2 (diff) | |
download | coreboot-38206886e6bce457789c4ec93956e27a235fd862.tar.xz |
soc/amd/common/block/smbus: Include acpimmio_map.h in sm.c
sm.c requires acpimmio_map.h for ACPIMMIO_* macros. This change
includes acpimmio_map.h in sm.c
Signed-off-by: Furquan Shaikh <furquan@google.com>
Change-Id: Ia049254fa389a76bcf6538c0449229b4d856086e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40821
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd/common')
-rw-r--r-- | src/soc/amd/common/block/smbus/sm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/smbus/sm.c b/src/soc/amd/common/block/smbus/sm.c index cef5bbaa23..99b24ec6d3 100644 --- a/src/soc/amd/common/block/smbus/sm.c +++ b/src/soc/amd/common/block/smbus/sm.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ /* This file is part of the coreboot project. */ +#include <amdblocks/acpimmio_map.h> #include <device/device.h> #include <device/pci.h> #include <device/pci_ids.h> |