mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-16 22:51:55 -06:00

Follow a similar convention as pl011. Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
13 lines
361 B
Rust
13 lines
361 B
Rust
// Copyright (C) 2024 Intel Corporation.
|
|
// Author(s): Zhao Liu <zhao1.liu@intel.com>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
//! # HPET QEMU Device Model
|
|
//!
|
|
//! This library implements a device model for the IA-PC HPET (High
|
|
//! Precision Event Timers) device in QEMU.
|
|
|
|
pub mod device;
|
|
pub mod fw_cfg;
|
|
|
|
pub const TYPE_HPET: &::std::ffi::CStr = c"hpet";
|