Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
23 lines
518 B
C
23 lines
518 B
C
/*
|
|
* Vhost-user RTC virtio device
|
|
*
|
|
* Copyright (c) 2025 Manos Pitsidianakis <[email protected]>
|
|
* Copyright 2026 Panasonic Automotive Systems Co., Ltd.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef QEMU_VHOST_USER_RTC_H
|
|
#define QEMU_VHOST_USER_RTC_H
|
|
|
|
#include "hw/virtio/vhost-user-base.h"
|
|
|
|
#define TYPE_VHOST_USER_RTC "vhost-user-rtc"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VHostUserRTC, VHOST_USER_RTC)
|
|
|
|
struct VHostUserRTC {
|
|
VHostUserBase parent_obj;
|
|
};
|
|
|
|
#endif /* QEMU_VHOST_USER_RTC_H */
|