Update to pci_types 0.10.0

This commit is contained in:
bjorn3
2024-06-15 13:41:51 +02:00
parent ac5f839ded
commit 2ab2fe7b5e
5 changed files with 3 additions and 15 deletions
Generated
+2 -2
View File
@@ -913,9 +913,9 @@ checksum = "7f0b59668fe80c5afe998f0c0bf93322bf2cd66cafeeb80581f291716f3467f2"
[[package]]
name = "pci_types"
version = "0.9.1"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6848549f754bd20aa382ffec0f4f04ba50e55a18ff75a0862bf9e227fe42b57"
checksum = "c4325c6aa3cca3373503b1527e75756f9fbfe5fd76be4b4c8a143ee47430b8e0"
dependencies = [
"bit_field",
"bitflags 2.5.0",
+1 -1
View File
@@ -19,7 +19,7 @@ fdt = { git = "https://gitlab.redox-os.org/rosehuds/fdt.git" }
libc = "0.2"
log = "0.4"
paw = "1.0"
pci_types = "0.9.1"
pci_types = "0.10"
plain = "0.2"
redox-log = "0.1"
redox_syscall = "0.5"
-4
View File
@@ -56,10 +56,6 @@ impl Pci {
}
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
impl ConfigRegionAccess for Pci {
fn function_exists(&self, _address: PciAddress) -> bool {
todo!();
}
unsafe fn read(&self, address: PciAddress, offset: u16) -> u32 {
let _guard = self.lock.lock().unwrap();
-4
View File
@@ -318,10 +318,6 @@ impl Pcie {
}
impl ConfigRegionAccess for Pcie {
fn function_exists(&self, _address: PciAddress) -> bool {
todo!();
}
unsafe fn read(&self, address: PciAddress, offset: u16) -> u32 {
let _guard = self.lock.lock().unwrap();
-4
View File
@@ -260,10 +260,6 @@ mod test {
}
impl ConfigRegionAccess for TestCfgAccess<'_> {
fn function_exists(&self, _address: PciAddress) -> bool {
unreachable!();
}
unsafe fn read(&self, addr: PciAddress, offset: u16) -> u32 {
assert_eq!(addr, self.addr);
let offset = offset as usize;