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 265db15 commit 632bcffCopy full SHA for 632bcff
rust/kernel/devres.rs
@@ -152,7 +152,7 @@ impl<T> Devres<T> {
152
Ok(Devres(inner))
153
}
154
155
- /// Same as [Devres::new`], but does not return a `Devres` instance. Instead the given `data`
+ /// Same as [`Devres::new`], but does not return a `Devres` instance. Instead the given `data`
156
/// is owned by devres and will be revoked / dropped, once the device is detached.
157
pub fn new_foreign_owned(dev: &Device, data: T, flags: Flags) -> Result {
158
let _ = DevresInner::new(dev, data, flags)?;
0 commit comments