Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

authored by

Aditya Dutt and committed by
Jonathan Corbet
b126dbf5 ba561b48

+6 -6
+1 -1
Documentation/driver-api/media/drivers/zoran.rst
··· 222 222 Ireland, Nigeria, South Africa. 223 223 224 224 The CCIR - N uses the PAL colorsystem and PAL frame size but the NTSC framerate, 225 - and is used in Argentinia, Uruguay, an a few others 225 + and is used in Argentina, Uruguay, an a few others 226 226 227 227 We do not talk about how the audio is broadcast ! 228 228
+1 -1
Documentation/driver-api/media/maintainer-entry-profile.rst
··· 116 116 .. [3] The ``v4l2-compliance`` also covers the media controller usage inside 117 117 V4L2 drivers. 118 118 119 - Other compilance tools are under development to check other parts of the 119 + Other compliance tools are under development to check other parts of the 120 120 subsystem. 121 121 122 122 Those tests need to pass before the patches go upstream.
+3 -3
Documentation/driver-api/nvdimm/nvdimm.rst
··· 535 535 char devname[50]; 536 536 537 537 snprintf(devname, sizeof(devname), "namespace%d.%d", 538 - ndctl_region_get_id(region), paramaters->id); 538 + ndctl_region_get_id(region), parameters->id); 539 539 540 540 ndctl_namespace_set_alt_name(ndns, devname); 541 541 /* 'uuid' must be set prior to setting size! */ 542 - ndctl_namespace_set_uuid(ndns, paramaters->uuid); 543 - ndctl_namespace_set_size(ndns, paramaters->size); 542 + ndctl_namespace_set_uuid(ndns, parameters->uuid); 543 + ndctl_namespace_set_size(ndns, parameters->size); 544 544 /* unlike pmem namespaces, blk namespaces have a sector size */ 545 545 if (parameters->lbasize) 546 546 ndctl_namespace_set_sector_size(ndns, parameters->lbasize);
+1 -1
Documentation/driver-api/pm/devices.rst
··· 358 358 is probed against the device in question by passing them to the 359 359 :c:func:`dev_pm_set_driver_flags` helper function.] If the first of 360 360 these flags is set, the PM core will not apply the direct-complete 361 - procedure described above to the given device and, consequenty, to any 361 + procedure described above to the given device and, consequently, to any 362 362 of its ancestors. The second flag, when set, informs the middle layer 363 363 code (bus types, device types, PM domains, classes) that it should take 364 364 the return value of the ``->prepare`` callback provided by the driver