Skip to content

Commit 0e0de62

Browse files
aloktiwagregkh
authored andcommitted
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 <[email protected]> Signed-off-by: Srinivas Kandagatla <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent d44870f commit 0e0de62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/nvmem/core.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1263,7 +1263,7 @@ void nvmem_device_put(struct nvmem_device *nvmem)
12631263
EXPORT_SYMBOL_GPL(nvmem_device_put);
12641264

12651265
/**
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
12671267
*
12681268
* @dev: Device that requests the nvmem device.
12691269
* @id: name id for the requested nvmem device.
@@ -1491,7 +1491,7 @@ EXPORT_SYMBOL_GPL(of_nvmem_cell_get);
14911491
#endif
14921492

14931493
/**
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
14951495
*
14961496
* @dev: Device that requests the nvmem cell.
14971497
* @id: nvmem cell name to get (this corresponds with the name from the
@@ -1526,7 +1526,7 @@ static void devm_nvmem_cell_release(struct device *dev, void *res)
15261526
}
15271527

15281528
/**
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
15301530
*
15311531
* @dev: Device that requests the nvmem cell.
15321532
* @id: nvmem cell name id to get.
@@ -2194,6 +2194,6 @@ static void __exit nvmem_exit(void)
21942194
subsys_initcall(nvmem_init);
21952195
module_exit(nvmem_exit);
21962196

2197-
MODULE_AUTHOR("Srinivas Kandagatla <[email protected]");
2198-
MODULE_AUTHOR("Maxime Ripard <[email protected]");
2197+
MODULE_AUTHOR("Srinivas Kandagatla <[email protected]>");
2198+
MODULE_AUTHOR("Maxime Ripard <[email protected]>");
21992199
MODULE_DESCRIPTION("nvmem Driver Core");

0 commit comments

Comments
 (0)