diff --git a/rust/kernel/pci.rs b/rust/kernel/pci.rs index 8435f8132e38..9c9f256c7f8f 100644 --- a/rust/kernel/pci.rs +++ b/rust/kernel/pci.rs @@ -238,8 +238,8 @@ pub trait Driver: Send { /// PCI driver probe. /// - /// Called when a new platform device is added or discovered. - /// Implementers should attempt to initialize the device here. + /// Called when a new pci device is added or discovered. Implementers should + /// attempt to initialize the device here. fn probe(dev: &Device, id_info: &Self::IdInfo) -> Result>>; }