HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
soc/amd/common/block/psp/psp_smm.c: Add missing <string.h>
Change-Id: Idc1d72e92c97cd5139ae7439aadb575ef011129a Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/soc/amd/common/block/psp/psp_smm.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/42342/1
diff --git a/src/soc/amd/common/block/psp/psp_smm.c b/src/soc/amd/common/block/psp/psp_smm.c index b0f9a41..e30897a 100644 --- a/src/soc/amd/common/block/psp/psp_smm.c +++ b/src/soc/amd/common/block/psp/psp_smm.c @@ -8,6 +8,8 @@ #include <console/console.h> #include <amdblocks/psp.h> #include <soc/iomap.h> +#include <string.h> + #include "psp_def.h"
#define C2P_BUFFER_MAXSIZE 0xc00 /* Core-to-PSP buffer */
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/42342
to look at the new patch set (#2).
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
soc/amd/common/block/psp/psp_smm.c: Add missing <string.h>
'memset' needs <string.h>.
Change-Id: Idc1d72e92c97cd5139ae7439aadb575ef011129a Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/soc/amd/common/block/psp/psp_smm.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/42342/2
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/42342/1/src/soc/amd/common/block/ps... File src/soc/amd/common/block/psp/psp_smm.c:
https://review.coreboot.org/c/coreboot/+/42342/1/src/soc/amd/common/block/ps... PS1, Line 85: memset needs <string.h>
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
Patch Set 2:
(1 comment)
comment added to make the review easy
https://review.coreboot.org/c/coreboot/+/42342/2/src/soc/amd/common/block/ps... File src/soc/amd/common/block/psp/psp_smm.c:
https://review.coreboot.org/c/coreboot/+/42342/2/src/soc/amd/common/block/ps... PS2, Line 19: u8 needs <stdint.h>
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
Patch Set 2:
(2 comments)
Thx
https://review.coreboot.org/c/coreboot/+/42342/2/src/soc/amd/common/block/ps... File src/soc/amd/common/block/psp/psp_smm.c:
https://review.coreboot.org/c/coreboot/+/42342/2/src/soc/amd/common/block/ps... PS2, Line 19: u8
needs <stdint. […]
oops, this is done it another change.
https://review.coreboot.org/c/coreboot/+/42342/2/src/soc/amd/common/block/ps... PS2, Line 85: memset this needs <string.h>
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
Patch Set 2: Code-Review+2
Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/42342 )
Change subject: soc/amd/common/block/psp/psp_smm.c: Add missing <string.h> ......................................................................
soc/amd/common/block/psp/psp_smm.c: Add missing <string.h>
'memset' needs <string.h>.
Change-Id: Idc1d72e92c97cd5139ae7439aadb575ef011129a Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/42342 Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/soc/amd/common/block/psp/psp_smm.c 1 file changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved
diff --git a/src/soc/amd/common/block/psp/psp_smm.c b/src/soc/amd/common/block/psp/psp_smm.c index f919668..92b0cc6 100644 --- a/src/soc/amd/common/block/psp/psp_smm.c +++ b/src/soc/amd/common/block/psp/psp_smm.c @@ -9,6 +9,8 @@ #include <console/console.h> #include <amdblocks/psp.h> #include <soc/iomap.h> +#include <string.h> + #include "psp_def.h"
#define C2P_BUFFER_MAXSIZE 0xc00 /* Core-to-PSP buffer */