Commit adf48e3f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

media: Documentation: fix several typos



Use codespell to fix lots of typos over frontends.

Manually verified to avoid false-positives.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Acked-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 2f8ee0dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ https://linuxtv.org/wiki/index.php/DVB_USB

  2004-12-26

  - refactored the dibusb-driver, splitted into separate files
  - refactored the dibusb-driver, split into separate files
  - i2c-probing enabled

  2004-12-06
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ Digital TV devices are implemented by several different drivers:
- Frontend drivers that are usually implemented as two separate drivers:

  - A tuner driver that implements the logic with commands the part of the
    hardware with is reponsible to tune into a digital TV transponder or
    hardware with is responsible to tune into a digital TV transponder or
    physical channel. The output of a tuner is usually a baseband or
    Intermediate Frequency (IF) signal;

+1 −1
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ Statistics collect

On almost all frontend hardware, the bit and byte counts are stored by
the hardware after a certain amount of time or after the total bit/block
counter reaches a certain value (usually programable), for example, on
counter reaches a certain value (usually programmable), for example, on
every 1000 ms or after receiving 1,000,000 bits.

So, if you read the registers too soon, you'll end by reading the same
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ Drivers initialize entity pads by calling

Drivers register entities with a media device by calling
:c:func:`media_device_register_entity()`
and unregistred by calling
and unregistered by calling
:c:func:`media_device_unregister_entity()`.

Interfaces
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ You can iterate over all registered devices as follows:
		int err;

		/* Find driver 'ivtv' on the PCI bus.
		pci_bus_type is a global. For USB busses use usb_bus_type. */
		pci_bus_type is a global. For USB buses use usb_bus_type. */
		drv = driver_find("ivtv", &pci_bus_type);
		/* iterate over all ivtv device instances */
		err = driver_for_each_device(drv, NULL, p, callback);
Loading