diff options
author | Maxim Levitsky <mlevitsk@redhat.com> | 2020-10-19 19:36:59 +0300 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-10-27 16:48:50 +0100 |
commit | 5dae6fad949a0852182e7cf653f722d503440089 (patch) | |
tree | e1069cf092b4aa558fdf135ed66e607310434415 /include | |
parent | 5057bf95814a80c8012d3505d1f26c4545c32f84 (diff) | |
download | qemu-5dae6fad949a0852182e7cf653f722d503440089.zip qemu-5dae6fad949a0852182e7cf653f722d503440089.tar.gz qemu-5dae6fad949a0852182e7cf653f722d503440089.tar.bz2 |
qdev: Fix two typos
Signed-off-by: Maxim Levitsky <mlevitsk@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20201019163702.471239-2-mlevitsk@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/qdev-core.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index 8689733..3761186 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -163,8 +163,8 @@ struct NamedClockList { /** * DeviceState: * @realized: Indicates whether the device has been fully constructed. - * When accessed outsize big qemu lock, must be accessed with - * atomic_load_acquire() + * When accessed outside big qemu lock, must be accessed with + * qatomic_load_acquire() * @reset: ResettableState for the device; handled by Resettable interface. * * This structure should not be accessed directly. We declare it here |