hw/nvram: use at24 macro
authorPatrick Venture <venture@google.com>
Wed, 19 Jan 2022 21:43:29 +0000 (13:43 -0800)
committerLaurent Vivier <laurent@vivier.eu>
Mon, 21 Feb 2022 17:21:54 +0000 (18:21 +0100)
Use the macro for going from I2CSlave to EEPROMState.

Signed-off-by: Patrick Venture <venture@google.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20220119214329.2557049-1-venture@google.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
hw/nvram/eeprom_at24c.c

index af6f5dbb998475871b4defb59c470ecea143945e..da435500baca7e92690504a8b57315934a224660 100644 (file)
@@ -54,7 +54,7 @@ struct EEPROMState {
 static
 int at24c_eeprom_event(I2CSlave *s, enum i2c_event event)
 {
-    EEPROMState *ee = container_of(s, EEPROMState, parent_obj);
+    EEPROMState *ee = AT24C_EE(s);
 
     switch (event) {
     case I2C_START_SEND: