2 * PCA9552 I2C LED blinker
4 * Copyright (c) 2017-2018, IBM Corporation.
6 * This work is licensed under the terms of the GNU GPL, version 2 or
7 * later. See the COPYING file in the top-level directory.
12 #include "hw/i2c/i2c.h"
14 #define TYPE_PCA9552 "pca9552"
15 #define PCA9552(obj) OBJECT_CHECK(PCA9552State, (obj), TYPE_PCA9552)
17 #define PCA9552_NR_REGS 10
19 typedef struct PCA9552State
{
27 uint8_t regs
[PCA9552_NR_REGS
];