hw/arm/aspeed: anacapa: use ASCII in comments
The anacapa machine source contains a few comments using the U+2014 EM DASH character. Replace them with plain ASCII hyphens so the file stays ASCII-only. Signed-off-by: Emmanuel Blot <emmanuel.blot@free.fr> Link: https://lore.kernel.org/qemu-devel/20260707091609.97759-8-emmanuel.blot@free.fr Signed-off-by: Cédric Le Goater <clg@redhat.com>
Emmanuel Blot committed
Jul 7, 2026 at 11:16 UTC
b3e56ab9197283fdb911c0fe7cdc20f45ed2d789
1 file changed
+4
-4
hw/arm/aspeed_ast2600_anacapa.c
+4
-4
@@ -242,7 +242,7 @@ static void anacapa_bmc_i2c_init(AspeedMachineState *bmc)
242
/* &i2c1 */
243
/* eeprom@50 */
244
at24c_eeprom_init(i2c[1], 0x50, 256 * KiB);
245
- /* i2c-mux@70 (PCA9546) — 4 channels, empty */
245
+ /* i2c-mux@70 (PCA9546) - 4 channels, empty */
246
i2c_slave_create_simple(i2c[1], TYPE_PCA9546, 0x70);
247
248
/* &i2c4 */
@@ -259,7 +259,7 @@ static void anacapa_bmc_i2c_init(AspeedMachineState *bmc)
259
i2c_mux = i2c_slave_create_simple(i2c[8], TYPE_PCA9546, 0x72);
260
261
/* i2c8mux ch0 */
262
- /* adc128d818@1f — no model */
262
+ /* adc128d818@1f - no model */
263
/* pca9555@22 */
264
i2c_slave_create_simple(pca954x_i2c_get_bus(i2c_mux, 0),
265
TYPE_PCA9552, 0x22);
@@ -305,7 +305,7 @@ static void anacapa_bmc_i2c_init(AspeedMachineState *bmc)
305
/* i2c-mux@71 (PCA9548) */
306
i2c_mux = i2c_slave_create_simple(i2c[11], TYPE_PCA9548, 0x71);
307
308
- /* i2c11mux ch0-ch4 — empty */
308
+ /* i2c11mux ch0-ch4 - empty */
309
310
/* i2c11mux ch5 */
311
/* pca9555@22 */
@@ -328,7 +328,7 @@ static void anacapa_bmc_i2c_init(AspeedMachineState *bmc)
328
hpm_brd_id_eeprom, hpm_brd_id_eeprom_len);
329
330
/* i2c13mux ch7 */
331
- /* nfc@28 — no model */
331
+ /* nfc@28 - no model */
332
}
333
334
static void aspeed_machine_anacapa_class_init(ObjectClass *oc,