Skip to content

Commit 37b212e

Browse files
committed
cpuid: Fix import ordering to make latest rustfmt happy
Signed-off-by: Matej Hrica <[email protected]>
1 parent 62e71f4 commit 37b212e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cpuid/src/common.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// SPDX-License-Identifier: Apache-2.0
33

44
#[cfg(target_arch = "x86")]
5-
use std::arch::x86::{CpuidResult, __cpuid_count, __get_cpuid_max};
5+
use std::arch::x86::{__cpuid_count, __get_cpuid_max, CpuidResult};
66
#[cfg(target_arch = "x86_64")]
7-
use std::arch::x86_64::{CpuidResult, __cpuid_count, __get_cpuid_max};
7+
use std::arch::x86_64::{__cpuid_count, __get_cpuid_max, CpuidResult};
88

99
use crate::cpu_leaf::*;
1010

0 commit comments

Comments
 (0)