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 /hw | |
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 'hw')
-rw-r--r-- | hw/arm/omap2.c | 2 | ||||
-rw-r--r-- | hw/misc/mac_via.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/arm/omap2.c b/hw/arm/omap2.c index 02b1aa8c97..8571eedd73 100644 --- a/hw/arm/omap2.c +++ b/hw/arm/omap2.c @@ -274,7 +274,7 @@ static void omap_eac_format_update(struct omap_eac_s *s) fmt.freq = s->codec.rate; /* TODO: signedness possibly depends on the CODEC hardware - or * does I2S specify it? */ - /* All register writes are 16 bits so we we store 16-bit samples + /* All register writes are 16 bits so we store 16-bit samples * in the buffers regardless of AGCFR[B8_16] value. */ fmt.fmt = AUDIO_FORMAT_U16; diff --git a/hw/misc/mac_via.c b/hw/misc/mac_via.c index fba85a53d7..f42c12755a 100644 --- a/hw/misc/mac_via.c +++ b/hw/misc/mac_via.c @@ -587,7 +587,7 @@ static void adb_via_poll(void *opaque) /* * For older Linux kernels that switch to IDLE mode after sending the * ADB command, detect if there is an existing response and return that - * as a a "fake" autopoll reply or bus timeout accordingly + * as a "fake" autopoll reply or bus timeout accordingly */ *data = v1s->adb_data_out[0]; olen = v1s->adb_data_in_size; |