diff options
author | Thomas Huth <thuth@redhat.com> | 2022-07-22 16:35:21 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-08-01 11:58:02 +0200 |
commit | a07d9df0fd9d449c0271e2fe358e472bc7efefc2 (patch) | |
tree | 1f09d173f67c9481f4532b197fa37d7afeb97ed1 /target/arm | |
parent | 7a21bee2aa52fc95b25e38372678986ee94f05f1 (diff) |
trivial: Fix duplicated words
Some files wrongly contain the same word twice in a row.
One of them should be removed or replaced.
Message-Id: <20220722145859.1952732-1-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target/arm')
-rw-r--r-- | target/arm/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c index 1a8b06410e..e1bdc80c35 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -3898,7 +3898,7 @@ static const ARMCPRegInfo cache_dirty_status_cp_reginfo[] = { }; static const ARMCPRegInfo cache_block_ops_cp_reginfo[] = { - /* We never have a a block transfer operation in progress */ + /* We never have a block transfer operation in progress */ { .name = "BXSR", .cp = 15, .crn = 7, .crm = 12, .opc1 = 0, .opc2 = 4, .access = PL0_R, .type = ARM_CP_CONST | ARM_CP_NO_RAW, .resetvalue = 0 }, |