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 305da02 commit cd62d85Copy full SHA for cd62d85
src/mmio.rs
@@ -1,9 +1,6 @@
1
use core::{
2
fmt,
3
- sync::atomic::{
4
- AtomicPtr,
5
- Ordering,
6
- },
+ sync::atomic::{AtomicPtr, Ordering},
7
};
8
9
use crate::LineStsFlags;
@@ -101,11 +98,11 @@ impl MmioSerialPort {
101
98
self_data.write(b' ');
102
99
wait_for!(self.line_sts().contains(LineStsFlags::OUTPUT_EMPTY));
103
100
self_data.write(8)
104
+ }
105
_ => {
106
107
self_data.write(data);
108
109
}
110
111
0 commit comments