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.
1 parent cbc7739 commit 154f75aCopy full SHA for 154f75a
acpi/src/madt.rs
@@ -61,7 +61,7 @@ unsafe impl AcpiTable for Madt {
61
}
62
63
impl Madt {
64
- pub fn get_mpwk_mailbox_addr(&self) -> Result<u64, AcpiError> {
+ pub fn get_mpwk_mailbox_addr(self: Pin<&Self>) -> Result<u64, AcpiError> {
65
for entry in self.entries() {
66
if let MadtEntry::MultiprocessorWakeup(entry) = entry {
67
return Ok(entry.mailbox_address);
0 commit comments