Furquan Shaikh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the conditional to include sata.c ......................................................................
soc/amd/common/block/sata: Fix the conditional to include sata.c
sata.c was being added to ramstage based on the selection of CONFIG_SOC_AMD_COMMON_BLOCK_HDA which is not correct. This change fixes the error by including sata.c based on selection of CONFIG_SOC_AMD_COMMON_BLOCK_SATA.
BUG=b:153858769
Change-Id: I5d23e5817872ddbb3d8d4f7dcabbaafcee4d51f4 Signed-off-by: Furquan Shaikh furquan@google.com --- M src/soc/amd/common/block/sata/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/40766/1
diff --git a/src/soc/amd/common/block/sata/Makefile.inc b/src/soc/amd/common/block/sata/Makefile.inc index 59b99eb..3ca2a89 100644 --- a/src/soc/amd/common/block/sata/Makefile.inc +++ b/src/soc/amd/common/block/sata/Makefile.inc @@ -1 +1 @@ -ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_HDA) += sata.c +ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_SATA) += sata.c
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the conditional to include sata.c ......................................................................
Patch Set 1: Code-Review+1
(1 comment)
https://review.coreboot.org/c/coreboot/+/40766/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/40766/1//COMMIT_MSG@7 PS1, Line 7: conditional condition
Hello build bot (Jenkins), Patrick Georgi, Martin Roth, Paul Menzel, Aaron Durbin,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/40766
to look at the new patch set (#2).
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
soc/amd/common/block/sata: Fix the condition to include sata.c
sata.c was being added to ramstage based on the selection of CONFIG_SOC_AMD_COMMON_BLOCK_HDA which is not correct. This change fixes the error by including sata.c based on selection of CONFIG_SOC_AMD_COMMON_BLOCK_SATA.
BUG=b:153858769
Change-Id: I5d23e5817872ddbb3d8d4f7dcabbaafcee4d51f4 Signed-off-by: Furquan Shaikh furquan@google.com --- M src/soc/amd/common/block/sata/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/66/40766/2
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
Patch Set 2: Code-Review+2
Aaron Durbin has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
Patch Set 2: Code-Review+2
Furquan Shaikh has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/40766/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/40766/1//COMMIT_MSG@7 PS1, Line 7: conditional
condition
Done
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
Patch Set 2: Code-Review+2
Oops
Furquan Shaikh has submitted this change. ( https://review.coreboot.org/c/coreboot/+/40766 )
Change subject: soc/amd/common/block/sata: Fix the condition to include sata.c ......................................................................
soc/amd/common/block/sata: Fix the condition to include sata.c
sata.c was being added to ramstage based on the selection of CONFIG_SOC_AMD_COMMON_BLOCK_HDA which is not correct. This change fixes the error by including sata.c based on selection of CONFIG_SOC_AMD_COMMON_BLOCK_SATA.
BUG=b:153858769
Change-Id: I5d23e5817872ddbb3d8d4f7dcabbaafcee4d51f4 Signed-off-by: Furquan Shaikh furquan@google.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/40766 Reviewed-by: HAOUAS Elyes ehaouas@noos.fr Reviewed-by: Aaron Durbin adurbin@chromium.org Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/common/block/sata/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Aaron Durbin: Looks good to me, approved HAOUAS Elyes: Looks good to me, approved Angel Pons: Looks good to me, approved
diff --git a/src/soc/amd/common/block/sata/Makefile.inc b/src/soc/amd/common/block/sata/Makefile.inc index 59b99eb..3ca2a89 100644 --- a/src/soc/amd/common/block/sata/Makefile.inc +++ b/src/soc/amd/common/block/sata/Makefile.inc @@ -1 +1 @@ -ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_HDA) += sata.c +ramstage-$(CONFIG_SOC_AMD_COMMON_BLOCK_SATA) += sata.c