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

nvmem: core: Fix typos in comments and MODULE_AUTHOR strings

This patch fixes minor typo issues for nvmem-core.c:
Corrects "form" to "from" in multiple function descriptions.
Fixes missing closing angle brackets in MODULE_AUTHOR entries.

These changes improve readability and formatting consistency.

Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Signed-off-by: Srinivas Kandagatla <srini@kernel.org>
Link: https://lore.kernel.org/r/20250712181905.6738-4-srini@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Alok Tiwari and committed by
Greg Kroah-Hartman
0e0de622 d44870ff

+5 -5
+5 -5
drivers/nvmem/core.c
··· 1263 1263 EXPORT_SYMBOL_GPL(nvmem_device_put); 1264 1264 1265 1265 /** 1266 - * devm_nvmem_device_get() - Get nvmem device of device form a given id 1266 + * devm_nvmem_device_get() - Get nvmem device of device from a given id 1267 1267 * 1268 1268 * @dev: Device that requests the nvmem device. 1269 1269 * @id: name id for the requested nvmem device. ··· 1491 1491 #endif 1492 1492 1493 1493 /** 1494 - * nvmem_cell_get() - Get nvmem cell of device form a given cell name 1494 + * nvmem_cell_get() - Get nvmem cell of device from a given cell name 1495 1495 * 1496 1496 * @dev: Device that requests the nvmem cell. 1497 1497 * @id: nvmem cell name to get (this corresponds with the name from the ··· 1526 1526 } 1527 1527 1528 1528 /** 1529 - * devm_nvmem_cell_get() - Get nvmem cell of device form a given id 1529 + * devm_nvmem_cell_get() - Get nvmem cell of device from a given id 1530 1530 * 1531 1531 * @dev: Device that requests the nvmem cell. 1532 1532 * @id: nvmem cell name id to get. ··· 2194 2194 subsys_initcall(nvmem_init); 2195 2195 module_exit(nvmem_exit); 2196 2196 2197 - MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org"); 2198 - MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com"); 2197 + MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org>"); 2198 + MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>"); 2199 2199 MODULE_DESCRIPTION("nvmem Driver Core");