Skip to content

Commit 06c83b2

Browse files
Merge pull request #1773 from rust-osdev/fix-ci
ci: fix latest nightly issues
2 parents 565b1aa + 8998440 commit 06c83b2

File tree

29 files changed

+37
-29
lines changed

29 files changed

+37
-29
lines changed

uefi-raw/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
unused
2323
)]
2424

25-
#[macro_use]
2625
mod enums;
2726

2827
pub mod capsule;

uefi-raw/src/protocol/ata.rs

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

33
use super::device_path::DevicePathProtocol;
4-
use crate::{Event, Status};
4+
use crate::{Event, Status, newtype_enum};
55
use core::ffi::c_void;
66
use uguid::{Guid, guid};
77

uefi-raw/src/protocol/console.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
pub mod serial;
44

5-
use crate::{Boolean, Char16, Event, Guid, PhysicalAddress, Status, guid};
5+
use crate::{Boolean, Char16, Event, Guid, PhysicalAddress, Status, guid, newtype_enum};
66
use bitflags::bitflags;
77
use core::ptr;
88

uefi-raw/src/protocol/console/serial.rs

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

3-
use crate::{Guid, Status, guid};
3+
use crate::{Guid, Status, guid, newtype_enum};
44
use bitflags::bitflags;
55

66
bitflags! {

uefi-raw/src/protocol/device_path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
4343
mod device_path_gen;
4444

45-
use crate::{Boolean, Char16, Guid, guid};
45+
use crate::{Boolean, Char16, Guid, guid, newtype_enum};
4646

4747
pub use device_path_gen::{acpi, bios_boot_spec, end, hardware, media, messaging};
4848

uefi-raw/src/protocol/device_path/device_path_gen.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#![allow(missing_debug_implementations)]
1111
use crate::protocol::device_path;
1212
use crate::table::boot::MemoryType;
13-
use crate::{Guid, IpAddress, guid};
13+
use crate::{Guid, IpAddress, guid, newtype_enum};
1414
use bitflags::bitflags;
1515
use device_path::DevicePathProtocol as DevicePathHeader;
1616
#[cfg(doc)]

uefi-raw/src/protocol/file_system.rs

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

33
use crate::time::Time;
4-
use crate::{Boolean, Char16, Event, Guid, Status, guid};
4+
use crate::{Boolean, Char16, Event, Guid, Status, guid, newtype_enum};
55
use bitflags::bitflags;
66
use core::ffi::c_void;
77

uefi-raw/src/protocol/firmware_volume.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use crate::firmware_storage::FirmwareVolumeAttributes;
44
use crate::protocol::block::Lba;
5-
use crate::{Guid, Handle, PhysicalAddress, Status, guid};
5+
use crate::{Guid, Handle, PhysicalAddress, Status, guid, newtype_enum};
66
use core::ffi::c_void;
77
use core::ops::RangeInclusive;
88

uefi-raw/src/protocol/hii/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
use core::fmt::Debug;
66

7-
use crate::{Char16, Guid, Status, guid};
7+
use crate::{Char16, Guid, Status, guid, newtype_enum};
88

99
/// EFI_CONFIG_KEYWORD_HANDLER_PROTOCOL
1010
#[derive(Debug)]

uefi-raw/src/protocol/hii/database.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! Bindings for HII Database Protocol
44
55
use super::{HiiHandle, HiiPackageHeader, HiiPackageListHeader, KeyDescriptor};
6-
use crate::{Guid, Handle, Status, guid};
6+
use crate::{Guid, Handle, Status, guid, newtype_enum};
77

88
/// EFI_HII_KEYBOARD_LAYOUT
99
#[derive(Debug)]

0 commit comments

Comments
 (0)