diff options
author | Patrick Georgi <pgeorgi@google.com> | 2019-11-22 20:58:58 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-23 20:09:56 +0000 |
commit | 0bb83469ed29a576f8a89a6a775ce65fcf6505bb (patch) | |
tree | 0e07a121fd9885a5225db248f4f7e2b86fb390fa /src/cpu/amd/agesa | |
parent | f3758b6738d2968980309257197ef4f1977dc974 (diff) |
Kconfig: comply to Linux 5.3's Kconfig language rules
Kconfig became stricter on what it accepts, so accomodate before
updating to a new release.
Change-Id: I92a9e9bf0d557a7532ba533cd7776c48f2488f91
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37156
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/amd/agesa')
-rw-r--r-- | src/cpu/amd/agesa/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cpu/amd/agesa/Kconfig b/src/cpu/amd/agesa/Kconfig index b6b757f6ae..ddfe707d79 100644 --- a/src/cpu/amd/agesa/Kconfig +++ b/src/cpu/amd/agesa/Kconfig @@ -66,6 +66,6 @@ config S3_DATA_SIZE endif # CPU_AMD_AGESA -source src/cpu/amd/agesa/family14/Kconfig -source src/cpu/amd/agesa/family15tn/Kconfig -source src/cpu/amd/agesa/family16kb/Kconfig +source "src/cpu/amd/agesa/family14/Kconfig" +source "src/cpu/amd/agesa/family15tn/Kconfig" +source "src/cpu/amd/agesa/family16kb/Kconfig" |