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

pstore/blk: trivial typo fixes

Fix trivial typos in comments.

Fixes: 2a03ddbde1e1 ("pstore/blk: Move verify_size() macro out of function")
Fixes: 17639f67c1d6 ("pstore/blk: Introduce backend for block devices")
Signed-off-by: Eugen Hristev <eugen.hristev@linaro.org>
Link: https://lore.kernel.org/r/20250101111921.850406-1-eugen.hristev@linaro.org
Signed-off-by: Kees Cook <kees@kernel.org>

authored by

Eugen Hristev and committed by
Kees Cook
542243af 9852d85e

+2 -2
+2 -2
fs/pstore/blk.c
··· 89 89 _##name_ = check_size(name, alignsize); \ 90 90 else \ 91 91 _##name_ = 0; \ 92 - /* Synchronize module parameters with resuls. */ \ 92 + /* Synchronize module parameters with results. */ \ 93 93 name = _##name_ / 1024; \ 94 94 dev->zone.name = _##name_; \ 95 95 } ··· 121 121 if (pstore_device_info) 122 122 return -EBUSY; 123 123 124 - /* zero means not limit on which backends to attempt to store. */ 124 + /* zero means no limit on which backends attempt to store. */ 125 125 if (!dev->flags) 126 126 dev->flags = UINT_MAX; 127 127