aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-02-20 12:51:07 +0100
committerPeter Maydell <peter.maydell@linaro.org>2023-02-27 13:27:04 +0000
commitcb4c33f014925d860387ecef4d74a7f03cab6626 (patch)
tree12973f790e51d9a9f8d321a0a731d5d2f63e2404
parent9880e9bc63efcaf3f5230c2f93fb03068df2e465 (diff)
downloadqemu-cb4c33f014925d860387ecef4d74a7f03cab6626.zip
qemu-cb4c33f014925d860387ecef4d74a7f03cab6626.tar.gz
qemu-cb4c33f014925d860387ecef4d74a7f03cab6626.tar.bz2
hw/gpio/max7310: Simplify max7310_realize()
Since &I2C_SLAVE(dev)->qdev == dev, no need to go back and forth with QOM type casting. Directly use 'dev'. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20230220115114.25237-2-philmd@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r--hw/gpio/max7310.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/gpio/max7310.c b/hw/gpio/max7310.c
index db6b5e3..031482d 100644
--- a/hw/gpio/max7310.c
+++ b/hw/gpio/max7310.c
@@ -183,11 +183,10 @@ static void max7310_gpio_set(void *opaque, int line, int level)
* but also accepts sequences that are not SMBus so return an I2C device. */
static void max7310_realize(DeviceState *dev, Error **errp)
{
- I2CSlave *i2c = I2C_SLAVE(dev);
MAX7310State *s = MAX7310(dev);
- qdev_init_gpio_in(&i2c->qdev, max7310_gpio_set, 8);
- qdev_init_gpio_out(&i2c->qdev, s->handler, 8);
+ qdev_init_gpio_in(dev, max7310_gpio_set, ARRAY_SIZE(s->handler));
+ qdev_init_gpio_out(dev, s->handler, ARRAY_SIZE(s->handler));
}
static void max7310_class_init(ObjectClass *klass, void *data)