From d591d7668e505ee5d89ce4f58f2df675c3be49d2 Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 23 Aug 2017 15:43:33 +0200 Subject: [PATCH 1/2] doc: minor typo fix Change-Id: I00fae047dea0eaf7e60037598af020817c66f659 Signed-off-by: Etienne Carriere --- docs/firmware-design.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/firmware-design.rst b/docs/firmware-design.rst index 4c3c4204e7..3bca7643fd 100644 --- a/docs/firmware-design.rst +++ b/docs/firmware-design.rst @@ -1864,7 +1864,7 @@ A ToC entry has the following fields: `offset_address`: The offset address at which the corresponding payload data can be found. The offset is calculated from the ToC base address. `size`: The size of the corresponding payload data in bytes. - `flags`: Flags associated with this entry. Non are yet defined. + `flags`: Flags associated with this entry. None are yet defined. Firmware Image Package creation tool ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 66079b04ec8b6ce9af4742ede977ba47ad7e11eb Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Wed, 23 Aug 2017 15:44:01 +0200 Subject: [PATCH 2/2] Makefile: correct path for CHECKPATCH warnings Change-Id: I08c9789d3fd2b034b08de663d151023ca005f77f Reported-by: Yann Gautier Signed-off-by: Etienne Carriere --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b57b212917..0a64514605 100644 --- a/Makefile +++ b/Makefile @@ -571,10 +571,10 @@ endif locate-checkpatch: ifndef CHECKPATCH - $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl") + $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/scripts/checkpatch.pl") else ifeq (,$(wildcard ${CHECKPATCH})) - $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl") + $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/scripts/checkpatch.pl") endif endif