aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYurii Zubrytskyi <zyy@google.com>2016-11-20 18:08:10 -0800
committerYurii Zubrytskyi <zyy@google.com>2016-11-20 18:08:10 -0800
commit778c24ad5a6445ed7b5917b6d907e911cc70cb4f (patch)
treeefa1d0bd55d09ed1b27f6b260e3deee4dd6c309a
parent9713dd2c83c4baf1dd39e5cb4f65092799b66244 (diff)
downloadqemu-android-778c24ad5a6445ed7b5917b6d907e911cc70cb4f.tar.gz
[qemu2] Fix the sync device name for ARM images
There was a typo in device name, '-' instead of '_'. CL fixes it. Change-Id: I2c6994a4d0350cb7e1c36f8a56b34f04c01f4746
-rw-r--r--hw/arm/ranchu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/ranchu.c b/hw/arm/ranchu.c
index 14935428f9..9e8fb07be7 100644
--- a/hw/arm/ranchu.c
+++ b/hw/arm/ranchu.c
@@ -534,7 +534,7 @@ static void ranchu_init(MachineState *machine)
create_simple_device(vbi, pic, RANCHU_GOLDFISH_PIPE, "goldfish_pipe",
"google,android-pipe\0"
"generic,android-pipe", 2, 0, 0);
- create_simple_device(vbi, pic, RANCHU_GOLDFISH_SYNC, "goldfish-sync",
+ create_simple_device(vbi, pic, RANCHU_GOLDFISH_SYNC, "goldfish_sync",
"google,goldfish-sync\0"
"generic,goldfish-sync", 2, 0, 0);