On Thu, Dec 18, 2025 at 2:40 AM Timur Tabi <[email protected]> wrote:
>
> + /// Returns the PCI device name.
> + ///
> + /// This returns the device name in the format "DDDD:BB:DD.F" where:
> + /// - DDDD is the PCI domain (4 hex digits)
> + /// - BB is the bus number (2 hex digits)
> + /// - DD is the device number (2 hex digits)
> + /// - F is the function number (1 hex digit)
It probably looks better like (i.e. code spans + ending in period):
/// This returns the device name in the format `DDDD:BB:DD.F` where:
/// - `DDDD` is the PCI domain (4 hex digits).
/// - `BB` is the bus number (2 hex digits).
/// - `DD` is the device number (2 hex digits).
/// - `F` is the function number (1 hex digit).
> + // If init_name is set, use it; otherwise use the kobject name
Similarly:
// If `init_name` is set, use it; otherwise use the kobject name.
Thanks!
Cheers,
Miguel