Skip to content

Commit 7ba95c3

Browse files
committed
uefi: Adjust import order for QA test
1 parent 36ec206 commit 7ba95c3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

uefi-test-runner/src/proto/pci/root_bridge.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// SPDX-License-Identifier: MIT OR Apache-2.0
22

33
use core::ptr;
4+
use uefi::Handle;
45
use uefi::boot::{OpenProtocolAttributes, OpenProtocolParams, ScopedProtocol, image_handle};
56
use uefi::proto::ProtocolPointer;
67
use uefi::proto::pci::PciIoAddress;
78
use uefi::proto::pci::root_bridge::{AttributeReport, PciRootBridgeIo};
8-
use uefi::Handle;
99
use uefi_raw::protocol::pci::resource::QWordAddressSpaceDescriptor;
1010
use uefi_raw::protocol::pci::root_bridge::{
1111
PciRootBridgeIoProtocolAttribute, PciRootBridgeIoProtocolOperation,

uefi/src/proto/pci/root_bridge.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
//! PCI Root Bridge protocol.
44
55
use super::{PciIoUnit, encode_io_mode_and_unit};
6-
use crate::Status;
7-
use crate::StatusExt;
86
use crate::proto::pci::buffer::PciBuffer;
97
use crate::proto::pci::region::PciMappedRegion;
8+
use crate::{Status, StatusExt};
109
use core::ffi::c_void;
1110
use core::fmt::Debug;
1211
use core::marker::PhantomData;

0 commit comments

Comments
 (0)