[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 24/26] docs/devel/qom.rst: Correct code style
From: |
Alex Bennée |
Subject: |
[PATCH 24/26] docs/devel/qom.rst: Correct code style |
Date: |
Fri, 23 Jun 2023 13:20:58 +0100 |
From: Philippe Mathieu-Daudé <philmd@linaro.org>
Per commit 067109a11c ("docs/devel: mention the spacing requirement
for QOM"):
For a storage structure the first declaration should always be
called “parent_obj” and for a class structure the first member
should always be called “parent_class”
Adapt the QOM rST document accordingly.
Reported-by: BALATON Zoltan <balaton@eik.bme.hu>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20230622101717.70468-1-philmd@linaro.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
docs/devel/qom.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/devel/qom.rst b/docs/devel/qom.rst
index c9237950d0..2828843058 100644
--- a/docs/devel/qom.rst
+++ b/docs/devel/qom.rst
@@ -26,7 +26,7 @@ features:
typedef DeviceClass MyDeviceClass;
typedef struct MyDevice
{
- DeviceState parent;
+ DeviceState parent_obj;
int reg0, reg1, reg2;
} MyDevice;
@@ -147,7 +147,7 @@ will also have a wrapper function to call it easily:
typedef struct MyDeviceClass
{
- DeviceClass parent;
+ DeviceClass parent_class;
void (*frobnicate) (MyDevice *obj);
} MyDeviceClass;
--
2.39.2
- [PATCH 07/26] qemu-keymap: properly check return from xkb_keymap_mod_get_index, (continued)
- [PATCH 07/26] qemu-keymap: properly check return from xkb_keymap_mod_get_index, Alex Bennée, 2023/06/23
- [PATCH 10/26] tests/docker: add test-fuzz, Alex Bennée, 2023/06/23
- [PATCH 09/26] tests/qtests: clean-up and fix leak in generic_fuzz, Alex Bennée, 2023/06/23
- [PATCH 16/26] tests/docker: convert riscv64-cross to lcitool, Alex Bennée, 2023/06/23
- [PATCH 11/26] Makefile: add lcitool-refresh to UNCHECKED_GOALS, Alex Bennée, 2023/06/23
- [PATCH 13/26] tests/lcitool: Bump fedora container versions, Alex Bennée, 2023/06/23
- [PATCH 19/26] plugins: fix memory leak while parsing options, Alex Bennée, 2023/06/23
- [PATCH 24/26] docs/devel/qom.rst: Correct code style,
Alex Bennée <=
- [PATCH 22/26] include/migration: mark vmstate_register() as a legacy function, Alex Bennée, 2023/06/23
- [PATCH 21/26] docs/devel: add some front matter to the devel index, Alex Bennée, 2023/06/23
- [PATCH 20/26] plugins: update lockstep to use g_memdup2, Alex Bennée, 2023/06/23
- [PATCH 23/26] include/hw/qdev-core: fixup kerneldoc annotations, Alex Bennée, 2023/06/23
- [PATCH 17/26] tests/avocado: update firmware to enable sbsa-ref/max, Alex Bennée, 2023/06/23
- [PATCH 26/26] docs/devel: introduce some key concepts for QOM development, Alex Bennée, 2023/06/23