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 /lib | |
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 'lib')
-rw-r--r-- | lib/aarch32/arm32_aeabi_divmod.c | 8 | ||||
-rw-r--r-- | lib/el3_runtime/aarch64/context_mgmt.c | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lib/aarch32/arm32_aeabi_divmod.c b/lib/aarch32/arm32_aeabi_divmod.c index a8f2e7420..0b36cb6cf 100644 --- a/lib/aarch32/arm32_aeabi_divmod.c +++ b/lib/aarch32/arm32_aeabi_divmod.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -18,12 +18,12 @@ * unsigned denominator); */ -/* struct qr - stores qutient/remainder to handle divmod EABI interfaces. */ +/* struct qr - stores quotient/remainder to handle divmod EABI interfaces. */ struct qr { unsigned int q; /* computed quotient */ unsigned int r; /* computed remainder */ - unsigned int q_n; /* specficies if quotient shall be negative */ - unsigned int r_n; /* specficies if remainder shall be negative */ + unsigned int q_n; /* specifies if quotient shall be negative */ + unsigned int r_n; /* specifies if remainder shall be negative */ }; static void uint_div_qr(unsigned int numerator, unsigned int denominator, diff --git a/lib/el3_runtime/aarch64/context_mgmt.c b/lib/el3_runtime/aarch64/context_mgmt.c index 8a5764ce2..b956491e3 100644 --- a/lib/el3_runtime/aarch64/context_mgmt.c +++ b/lib/el3_runtime/aarch64/context_mgmt.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. + * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ @@ -55,7 +55,7 @@ void __init cm_init(void) * The security state to initialize is determined by the SECURE attribute * of the entry_point_info. * - * The EE and ST attributes are used to configure the endianess and secure + * The EE and ST attributes are used to configure the endianness and secure * timer availability for the new execution context. * * To prepare the register state for entry call cm_prepare_el3_exit() and @@ -124,7 +124,7 @@ void cm_setup_context(cpu_context_t *ctx, const entry_point_info_t *ep) #ifdef IMAGE_BL31 /* - * SCR_EL3.IRQ, SCR_EL3.FIQ: Enable the physical FIQ and IRQ rounting as + * SCR_EL3.IRQ, SCR_EL3.FIQ: Enable the physical FIQ and IRQ routing as * indicated by the interrupt routing model for BL31. */ scr_el3 |= get_scr_el3_from_routing_model(security_state); @@ -175,7 +175,7 @@ void cm_setup_context(cpu_context_t *ctx, const entry_point_info_t *ep) /* * Store the initialised SCTLR_EL1 value in the cpu_context - SCTLR_EL2 - * and other EL2 registers are set up by cm_preapre_ns_entry() as they + * and other EL2 registers are set up by cm_prepare_ns_entry() as they * are not part of the stored cpu_context. */ write_ctx_reg(get_sysregs_ctx(ctx), CTX_SCTLR_EL1, sctlr_elx); @@ -350,7 +350,7 @@ void cm_prepare_el3_exit(uint32_t security_state) | CPTR_EL2_TFP_BIT)); /* - * Initiliase CNTHCTL_EL2. All fields are + * Initialise CNTHCTL_EL2. All fields are * architecturally UNKNOWN on reset and are set to zero * except for field(s) listed below. * |