mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/
synced 2025-04-19 20:58:31 +09:00
Documentation/driver-api: fixed spelling mistakes
Fixed some spelling mistakes identified by misspell tool. The example code in Documentation/driver-api/nvdimm/nvdimm.rst contained a misspelled identifier (paramaters instead of parameters). This typo would have caused a compilation error if copied as-is. Signed-off-by: Aditya Dutt <duttaditya18@gmail.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/20250211103002.199004-1-duttaditya18@gmail.com
This commit is contained in:
parent
ba561b4857
commit
b126dbf52e
@ -222,7 +222,7 @@ The CCIR - I uses the PAL colorsystem, and is used in Great Britain, Hong Kong,
|
||||
Ireland, Nigeria, South Africa.
|
||||
|
||||
The CCIR - N uses the PAL colorsystem and PAL frame size but the NTSC framerate,
|
||||
and is used in Argentinia, Uruguay, an a few others
|
||||
and is used in Argentina, Uruguay, an a few others
|
||||
|
||||
We do not talk about how the audio is broadcast !
|
||||
|
||||
|
@ -116,7 +116,7 @@ CEC drivers ``cec-compliance``
|
||||
.. [3] The ``v4l2-compliance`` also covers the media controller usage inside
|
||||
V4L2 drivers.
|
||||
|
||||
Other compilance tools are under development to check other parts of the
|
||||
Other compliance tools are under development to check other parts of the
|
||||
subsystem.
|
||||
|
||||
Those tests need to pass before the patches go upstream.
|
||||
|
@ -535,12 +535,12 @@ internally with a static identifier::
|
||||
char devname[50];
|
||||
|
||||
snprintf(devname, sizeof(devname), "namespace%d.%d",
|
||||
ndctl_region_get_id(region), paramaters->id);
|
||||
ndctl_region_get_id(region), parameters->id);
|
||||
|
||||
ndctl_namespace_set_alt_name(ndns, devname);
|
||||
/* 'uuid' must be set prior to setting size! */
|
||||
ndctl_namespace_set_uuid(ndns, paramaters->uuid);
|
||||
ndctl_namespace_set_size(ndns, paramaters->size);
|
||||
ndctl_namespace_set_uuid(ndns, parameters->uuid);
|
||||
ndctl_namespace_set_size(ndns, parameters->size);
|
||||
/* unlike pmem namespaces, blk namespaces have a sector size */
|
||||
if (parameters->lbasize)
|
||||
ndctl_namespace_set_sector_size(ndns, parameters->lbasize);
|
||||
|
@ -358,7 +358,7 @@ the phases are: ``prepare``, ``suspend``, ``suspend_late``, ``suspend_noirq``.
|
||||
is probed against the device in question by passing them to the
|
||||
:c:func:`dev_pm_set_driver_flags` helper function.] If the first of
|
||||
these flags is set, the PM core will not apply the direct-complete
|
||||
procedure described above to the given device and, consequenty, to any
|
||||
procedure described above to the given device and, consequently, to any
|
||||
of its ancestors. The second flag, when set, informs the middle layer
|
||||
code (bus types, device types, PM domains, classes) that it should take
|
||||
the return value of the ``->prepare`` callback provided by the driver
|
||||
|
Loading…
x
Reference in New Issue
Block a user