We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
apci v5.0.0
1 parent fc09396 commit 28275c5Copy full SHA for 28275c5
acpi/Cargo.toml
@@ -1,9 +1,9 @@
1
[package]
2
name = "acpi"
3
-version = "4.1.1"
+version = "5.0.0"
4
authors = ["Isaac Woods"]
5
repository = "https://github.com/rust-osdev/acpi"
6
-description = "Library for parsing ACPI tables"
+description = "A pure-Rust library for parsing ACPI tables"
7
categories = ["hardware-support", "no-std"]
8
readme = "../README.md"
9
license = "MIT/Apache-2.0"
acpi/src/rsdp.rs
@@ -170,7 +170,7 @@ impl Rsdp {
170
}
171
172
/// Find the areas we should search for the RSDP in.
173
-pub fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
+fn find_search_areas<H>(handler: H) -> [Range<usize>; 2]
174
where
175
H: AcpiHandler,
176
{
0 commit comments