diff options
author | Paul Beesley <paul.beesley@arm.com> | 2019-01-11 18:26:51 +0000 |
---|---|---|
committer | Paul Beesley <paul.beesley@arm.com> | 2019-01-15 15:16:02 +0000 |
commit | 8aabea3358670f26cfa9eb99f8cd935d928f6da0 (patch) | |
tree | d8c5c20d785e36d8d77b6ff06f000775a5a89236 /docs/firmware-update.rst | |
parent | fe77b53e32692fc5d35df208e2b3d21a28f6228b (diff) | |
download | platform_external_arm-trusted-firmware-8aabea3358670f26cfa9eb99f8cd935d928f6da0.tar.gz platform_external_arm-trusted-firmware-8aabea3358670f26cfa9eb99f8cd935d928f6da0.tar.bz2 platform_external_arm-trusted-firmware-8aabea3358670f26cfa9eb99f8cd935d928f6da0.zip |
Correct typographical errors
Corrects typos in core code, documentation files, drivers, Arm
platforms and services.
None of the corrections affect code; changes are limited to comments
and other documentation.
Change-Id: I5c1027b06ef149864f315ccc0ea473e2a16bfd1d
Signed-off-by: Paul Beesley <paul.beesley@arm.com>
Diffstat (limited to 'docs/firmware-update.rst')
-rw-r--r-- | docs/firmware-update.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/firmware-update.rst b/docs/firmware-update.rst index e10e148a5..3ee57bcbb 100644 --- a/docs/firmware-update.rst +++ b/docs/firmware-update.rst @@ -266,14 +266,14 @@ FWU\_SMC\_IMAGE\_AUTH if (image_id is invalid) return -EPERM if (secure world caller) if (image_id state is not RESET) return -EPERM - if (image_addr/image_size is not mappped into BL1) return -ENOMEM + if (image_addr/image_size is not mapped into BL1) return -ENOMEM else // normal world caller if (image_id is secure image) if (image_id state is not COPIED) return -EPERM else // image_id is non-secure image if (image_id state is not RESET) return -EPERM if (image_addr/image_size is in secure memory) return -ENOMEM - if (image_addr/image_size not mappped into BL1) return -ENOMEM + if (image_addr/image_size not mapped into BL1) return -ENOMEM This SMC authenticates the image specified by ``image_id``. If the image is in the RESET state, BL1 authenticates the image in place using the provided |