hw/nvram: use at24 macro

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>
This commit is contained in:
Patrick Venture 2022-01-19 13:43:29 -08:00 committed by Laurent Vivier
parent 7fa6d336b3
commit 21b86097f8
1 changed files with 1 additions and 1 deletions

View 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: