blob: fc54dfcba47367d4578822993d1fa1d09168d759 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* QEMU sun4v Real Time Clock device
*
* The sun4v_rtc device (sun4v tod clock)
*
* Copyright (c) 2016 Artyom Tarasenko
*
* This code is licensed under the GNU GPL v3 or (at your option) any later
* version.
*/
#ifndef HW_RTC_SUN4V_RTC_H
#define HW_RTC_SUN4V_RTC_H
#include "exec/hwaddr.h"
void sun4v_rtc_init(hwaddr addr);
#endif
|