diff mbox series

[v3,2/5] mc: media_device_init() initialises a media_device, not media_entity

Message ID 20220309163112.11708-3-sakari.ailus@linux.intel.com
State Accepted
Commit db1fa290a35b1652628ba7b921ac7ad53ce36410
Headers show
Series Set bus_info field in framework | expand

Commit Message

Sakari Ailus March 9, 2022, 4:31 p.m. UTC
The documentation for media_device_init() had several references to
(struct) media_entity where it should have referred to struct media_device
instead. Fix this.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
---
 include/media/media-device.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Comments

Laurent Pinchart March 16, 2022, 9:15 a.m. UTC | #1
Hi Sakari,

Thank you for the patch.

On Wed, Mar 09, 2022 at 06:31:09PM +0200, Sakari Ailus wrote:
> The documentation for media_device_init() had several references to
> (struct) media_entity where it should have referred to struct media_device
> instead. Fix this.
> 
> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  include/media/media-device.h | 12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/include/media/media-device.h b/include/media/media-device.h
> index 7d5b212792a5..bc015d2cf541 100644
> --- a/include/media/media-device.h
> +++ b/include/media/media-device.h
> @@ -249,28 +249,28 @@ void media_device_cleanup(struct media_device *mdev);
>   * The caller is responsible for initializing the &media_device structure
>   * before registration. The following fields of &media_device must be set:
>   *
> - *  - &media_entity.dev must point to the parent device (usually a &pci_dev,
> + *  - &media_device.dev must point to the parent device (usually a &pci_dev,
>   *    &usb_interface or &platform_device instance).
>   *
> - *  - &media_entity.model must be filled with the device model name as a
> + *  - &media_device.model must be filled with the device model name as a
>   *    NUL-terminated UTF-8 string. The device/model revision must not be
>   *    stored in this field.
>   *
>   * The following fields are optional:
>   *
> - *  - &media_entity.serial is a unique serial number stored as a
> + *  - &media_device.serial is a unique serial number stored as a
>   *    NUL-terminated ASCII string. The field is big enough to store a GUID
>   *    in text form. If the hardware doesn't provide a unique serial number
>   *    this field must be left empty.
>   *
> - *  - &media_entity.bus_info represents the location of the device in the
> + *  - &media_device.bus_info represents the location of the device in the
>   *    system as a NUL-terminated ASCII string. For PCI/PCIe devices
> - *    &media_entity.bus_info must be set to "PCI:" (or "PCIe:") followed by
> + *    &media_device.bus_info must be set to "PCI:" (or "PCIe:") followed by
>   *    the value of pci_name(). For USB devices,the usb_make_path() function
>   *    must be used. This field is used by applications to distinguish between
>   *    otherwise identical devices that don't provide a serial number.
>   *
> - *  - &media_entity.hw_revision is the hardware device revision in a
> + *  - &media_device.hw_revision is the hardware device revision in a
>   *    driver-specific format. When possible the revision should be formatted
>   *    with the KERNEL_VERSION() macro.
>   *
diff mbox series

Patch

diff --git a/include/media/media-device.h b/include/media/media-device.h
index 7d5b212792a5..bc015d2cf541 100644
--- a/include/media/media-device.h
+++ b/include/media/media-device.h
@@ -249,28 +249,28 @@  void media_device_cleanup(struct media_device *mdev);
  * The caller is responsible for initializing the &media_device structure
  * before registration. The following fields of &media_device must be set:
  *
- *  - &media_entity.dev must point to the parent device (usually a &pci_dev,
+ *  - &media_device.dev must point to the parent device (usually a &pci_dev,
  *    &usb_interface or &platform_device instance).
  *
- *  - &media_entity.model must be filled with the device model name as a
+ *  - &media_device.model must be filled with the device model name as a
  *    NUL-terminated UTF-8 string. The device/model revision must not be
  *    stored in this field.
  *
  * The following fields are optional:
  *
- *  - &media_entity.serial is a unique serial number stored as a
+ *  - &media_device.serial is a unique serial number stored as a
  *    NUL-terminated ASCII string. The field is big enough to store a GUID
  *    in text form. If the hardware doesn't provide a unique serial number
  *    this field must be left empty.
  *
- *  - &media_entity.bus_info represents the location of the device in the
+ *  - &media_device.bus_info represents the location of the device in the
  *    system as a NUL-terminated ASCII string. For PCI/PCIe devices
- *    &media_entity.bus_info must be set to "PCI:" (or "PCIe:") followed by
+ *    &media_device.bus_info must be set to "PCI:" (or "PCIe:") followed by
  *    the value of pci_name(). For USB devices,the usb_make_path() function
  *    must be used. This field is used by applications to distinguish between
  *    otherwise identical devices that don't provide a serial number.
  *
- *  - &media_entity.hw_revision is the hardware device revision in a
+ *  - &media_device.hw_revision is the hardware device revision in a
  *    driver-specific format. When possible the revision should be formatted
  *    with the KERNEL_VERSION() macro.
  *