diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2020-10-24 19:01:19 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2020-10-27 11:10:44 +0000 |
commit | 58b350280e9782bf564bf55cf872edb8143a49a8 (patch) | |
tree | c430361eec7136fd3deded9fc9dcce531d7b48e3 /include | |
parent | a55aab618163f9ffd8b5cbf737d4e57875264510 (diff) | |
download | qemu-58b350280e9782bf564bf55cf872edb8143a49a8.zip qemu-58b350280e9782bf564bf55cf872edb8143a49a8.tar.gz qemu-58b350280e9782bf564bf55cf872edb8143a49a8.tar.bz2 |
hw/arm/bcm2836: Restrict BCM283XInfo declaration to C source
No code out of bcm2836.c uses (or requires) the BCM283XInfo
declarations. Move it locally to the C source file.
Reviewed-by: Luc Michel <luc.michel@greensocs.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20201024170127.3592182-2-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/arm/bcm2836.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/hw/arm/bcm2836.h b/include/hw/arm/bcm2836.h index 428c15d..43e9f8c 100644 --- a/include/hw/arm/bcm2836.h +++ b/include/hw/arm/bcm2836.h @@ -43,12 +43,4 @@ struct BCM283XState { BCM2835PeripheralState peripherals; }; -typedef struct BCM283XInfo BCM283XInfo; - -struct BCM283XClass { - DeviceClass parent_class; - const BCM283XInfo *info; -}; - - #endif /* BCM2836_H */ |