Skip to content

Commit 397c2bb

Browse files
committed
refactor(vmm): Remove unnecessary comments
Removes code commented out in commit 385baeb ("refactor: guest_config into cpu_config"), since they are stale. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent 90d3c01 commit 397c2bb

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/vmm/src/cpu_config/templates.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,13 @@
11
// Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
// SPDX-License-Identifier: Apache-2.0
33

4-
// /// Module with cpu templates for x86_64
5-
// #[cfg(target_arch = "x86_64")]
6-
// pub mod x86_64;
7-
//
8-
// /// Utility module for testing cpu_configuration.
9-
// pub mod test_utils;
10-
114
#[cfg(target_arch = "x86_64")]
125
mod common_types {
136
pub use crate::cpu_config::x86_64::custom_cpu_template::CustomCpuTemplate;
147
pub use crate::cpu_config::x86_64::static_cpu_templates::StaticCpuTemplate;
158
pub use crate::cpu_config::x86_64::{test_utils, CpuConfiguration, Error as GuestConfigError};
169
}
1710

18-
/// Module with cpu templates for aarch64
19-
// #[cfg(target_arch = "aarch64")]
20-
// pub mod aarch64;
21-
2211
#[cfg(target_arch = "aarch64")]
2312
mod common_types {
2413
pub use crate::cpu_config::aarch64::custom_cpu_template::CustomCpuTemplate;

0 commit comments

Comments
 (0)