diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-10-31 16:20:56 -0500 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2015-10-31 23:47:50 +0100 |
commit | b2a1a59ab5e9ed8253249daebe8666baf9876214 (patch) | |
tree | 649ab6081d1900247c36f14f4b4620f69dd21a3b | |
parent | babb2e67bc0a7c2da167ac56e26881823c5fad81 (diff) | |
download | coreboot-b2a1a59ab5e9ed8253249daebe8666baf9876214.tar.xz |
northbridge/amd/amdfam10: Correct S3_DATA_POS type from int to hex
This resolves a Kconfig warning.
Change-Id: Ic77c8bf89613c116dfdc73572709aeb354e33b2a
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/12287
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/northbridge/amd/amdfam10/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/amdfam10/Kconfig b/src/northbridge/amd/amdfam10/Kconfig index 39d6ecfd3d..3ea1e4643f 100644 --- a/src/northbridge/amd/amdfam10/Kconfig +++ b/src/northbridge/amd/amdfam10/Kconfig @@ -95,8 +95,8 @@ config S3_DATA_SIZE depends on (HAVE_ACPI_RESUME) config S3_DATA_POS - int - default 0 + hex + default 0x0 depends on (HAVE_ACPI_RESUME) if DIMM_DDR2 |