diff options
author | Hao Wu | 2021-01-08 20:09:45 +0100 |
---|---|---|
committer | Peter Maydell | 2021-01-12 22:19:02 +0100 |
commit | 828d651c585c1c2a2b8d4e67da36c9f91124855a (patch) | |
tree | 17e41b955e07f754162f8e2ea7f1e22f7bb9d792 /hw/nvram | |
parent | hw/misc: Add QTest for NPCM7XX PWM Module (diff) | |
download | qemu-828d651c585c1c2a2b8d4e67da36c9f91124855a.tar.gz qemu-828d651c585c1c2a2b8d4e67da36c9f91124855a.tar.xz qemu-828d651c585c1c2a2b8d4e67da36c9f91124855a.zip |
hw/*: Use type casting for SysBusDevice in NPCM7XX
A device shouldn't access its parent object which is QOM internal.
Instead it should use type cast for this purporse. This patch fixes this
issue for all NPCM7XX Devices.
Signed-off-by: Hao Wu <wuhaotsh@google.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20210108190945.949196-7-wuhaotsh@google.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/nvram')
-rw-r--r-- | hw/nvram/npcm7xx_otp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/nvram/npcm7xx_otp.c b/hw/nvram/npcm7xx_otp.c index b16ca530ba..c61f2fc1aa 100644 --- a/hw/nvram/npcm7xx_otp.c +++ b/hw/nvram/npcm7xx_otp.c @@ -371,7 +371,7 @@ static void npcm7xx_otp_realize(DeviceState *dev, Error **errp) { NPCM7xxOTPClass *oc = NPCM7XX_OTP_GET_CLASS(dev); NPCM7xxOTPState *s = NPCM7XX_OTP(dev); - SysBusDevice *sbd = &s->parent; + SysBusDevice *sbd = SYS_BUS_DEVICE(dev); memset(s->array, 0, sizeof(s->array)); |