diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-07-09 00:49:09 +0400 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-08-21 10:29:03 +0200 |
commit | ac78f737222ca5273cda26deeb850aa8546d108d (patch) | |
tree | c4c6dd4bcd09e5126e77e7e1a39feed3f8fa0f22 /docs | |
parent | 348fbd5816cab30d38d7a3727a4b83404797128a (diff) | |
download | qemu-ac78f737222ca5273cda26deeb850aa8546d108d.zip |
misc: fix naming scheme of compatiblity arrays
Since merge 31ed41889e6e13699871040fe089a2884dca46cb ("Merge
remote-tracking branch
'remotes/elmarco/tags/machine-props-pull-request' into staging"), the
compat arrays are in lowercase.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Message-Id: <20190708204909.10891-1-marcandre.lureau@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/devel/migration.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/devel/migration.rst b/docs/devel/migration.rst index 220059679a..f7668ae389 100644 --- a/docs/devel/migration.rst +++ b/docs/devel/migration.rst @@ -314,7 +314,7 @@ For example: a) Add a new property using ``DEFINE_PROP_BOOL`` - e.g. support-foo and default it to true. - b) Add an entry to the ``HW_COMPAT_`` for the previous version that sets + b) Add an entry to the ``hw_compat_`` for the previous version that sets the property to false. c) Add a static bool support_foo function that tests the property. d) Add a subsection with a .needed set to the support_foo function |