diff options
author | John Snow <jsnow@redhat.com> | 2020-07-24 01:22:54 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2020-10-01 13:04:16 -0400 |
commit | 98d98912238d9f4f4c41bda0a3d944d0cff934ce (patch) | |
tree | 0c307926640bab9e614ad4c968a61a189918f14e /hw/ide/macio.c | |
parent | 1d1c4bdb736688b20d864831b90c07dc59c7b10c (diff) | |
download | qemu-98d98912238d9f4f4c41bda0a3d944d0cff934ce.zip qemu-98d98912238d9f4f4c41bda0a3d944d0cff934ce.tar.gz qemu-98d98912238d9f4f4c41bda0a3d944d0cff934ce.tar.bz2 |
ide: rename cmd_write to ctrl_write
It's the Control register, part of the Control block -- Command is
misleading here. Rename all related functions and constants.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/ide/macio.c')
-rw-r--r-- | hw/ide/macio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/macio.c b/hw/ide/macio.c index 62a599a..b270a10 100644 --- a/hw/ide/macio.c +++ b/hw/ide/macio.c @@ -329,7 +329,7 @@ static void pmac_ide_write(void *opaque, hwaddr addr, uint64_t val, case 0x8: case 0x16: if (size == 1) { - ide_cmd_write(&d->bus, 0, val); + ide_ctrl_write(&d->bus, 0, val); } break; case 0x20: |