| Submitter | Antoine Mathys |
|---|---|
| Date | Dec. 12, 2012, 10:28 p.m. |
| Message ID | <50C90516.4080609@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/205669/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/ds1338.c b/hw/ds1338.c index faaa4a0..69018bc 100644 --- a/hw/ds1338.c +++ b/hw/ds1338.c @@ -17,6 +17,12 @@ */ #define NVRAM_SIZE 64 +/* Flags definitions */ +#define SECONDS_CH 0x80 +#define HOURS_12 0x40 +#define HOURS_PM 0x20 +#define CTRL_OSF 0x20 + typedef struct { I2CSlave i2c; int64_t offset;
Signed-off-by: Antoine Mathys <barsamin@gmail.com> --- hw/ds1338.c | 6 ++++++ 1 file changed, 6 insertions(+)