| 1 | /* |
| 2 | * Vhost-user RTC virtio device |
| 3 | * |
| 4 | * Copyright (c) 2025 Manos Pitsidianakis <manos.pitsidianakis@linaro.org> |
| 5 | * Copyright 2026 Panasonic Automotive Systems Co., Ltd. |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 8 | */ |
| 9 | |
| 10 | #ifndef QEMU_VHOST_USER_RTC_H |
| 11 | #define QEMU_VHOST_USER_RTC_H |
| 12 | |
| 13 | #include "hw/virtio/vhost-user-base.h" |
| 14 | |
| 15 | #define TYPE_VHOST_USER_RTC "vhost-user-rtc" |
| 16 | OBJECT_DECLARE_SIMPLE_TYPE(VHostUserRTC, VHOST_USER_RTC) |
| 17 | |
| 18 | struct VHostUserRTC { |
| 19 | VHostUserBase parent_obj; |
| 20 | }; |
| 21 | |
| 22 | #endif /* QEMU_VHOST_USER_RTC_H */ |