rustfmt whitespace fixes

This commit is contained in:
Eric Yanush 2024-04-22 14:01:48 -06:00
parent 68a4fd8f4a
commit 3e00c1ac52
2 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ impl<T: Instance> interrupt::typelevel::Handler<T::SCEInterrupt> for SceInterrup
// Disable the interrupt, but don't acknowledge the error, so that it can be
// forwarded off the the bus message consumer. If we don't provide some way for
// downstream code to determine that it has already provided this bus error instance
// to the bus message consumer, we are doomed to re-provide a single error instance for
// to the bus message consumer, we are doomed to re-provide a single error instance for
// an indefinite amount of time.
let ier = T::regs().ier();
ier.modify(|i| i.set_errie(false));

View File

@ -148,10 +148,10 @@ impl Registers {
if !self.0.msr().read().erri() {
// This ensures that once a single error instance has
// been acknowledged and forwared to the bus message consumer
// we don't continue to re-forward the same error occurrance for an
// we don't continue to re-forward the same error occurrance for an
// in-definite amount of time.
return None;
}
}
// Since we have not already acknowledge the error, and the interrupt was
// disabled in the ISR, we will acknowledge the current error and re-enable the interrupt