aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb-driver/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-usb-driver/src/lib.rs')
-rw-r--r--embassy-usb-driver/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-usb-driver/src/lib.rs b/embassy-usb-driver/src/lib.rs
index 3ad96c61d..59845a268 100644
--- a/embassy-usb-driver/src/lib.rs
+++ b/embassy-usb-driver/src/lib.rs
@@ -205,7 +205,7 @@ pub trait Bus {
205 /// 205 ///
206 /// # Errors 206 /// # Errors
207 /// 207 ///
208 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support 208 /// * [`Unsupported`] - This UsbBus implementation doesn't support
209 /// simulating a disconnect or it has not been enabled at creation time. 209 /// simulating a disconnect or it has not been enabled at creation time.
210 fn force_reset(&mut self) -> Result<(), Unsupported> { 210 fn force_reset(&mut self) -> Result<(), Unsupported> {
211 Err(Unsupported) 211 Err(Unsupported)
@@ -215,7 +215,7 @@ pub trait Bus {
215 /// 215 ///
216 /// # Errors 216 /// # Errors
217 /// 217 ///
218 /// * [`Unsupported`](crate::Unsupported) - This UsbBus implementation doesn't support 218 /// * [`Unsupported`] - This UsbBus implementation doesn't support
219 /// remote wakeup or it has not been enabled at creation time. 219 /// remote wakeup or it has not been enabled at creation time.
220 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>; 220 async fn remote_wakeup(&mut self) -> Result<(), Unsupported>;
221} 221}