diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2021-12-26 03:24:11 +0100 |
---|---|---|
committer | Song Liu <song@kernel.org> | 2022-01-06 17:37:03 +0100 |
commit | dd3dc5f416b7247a4b5d7bac6698be623c180572 (patch) | |
tree | 1e661fd8a0ccf1699e0803c733f55aa840f97a5c /drivers/md/md.c | |
parent | md: raid456 add nowait support (diff) | |
download | linux-dd3dc5f416b7247a4b5d7bac6698be623c180572.tar.xz linux-dd3dc5f416b7247a4b5d7bac6698be623c180572.zip |
md: fix spelling of "its"
Use the possessive "its" instead of the contraction "it's"
in printed messages.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Song Liu <song@kernel.org>
Cc: linux-raid@vger.kernel.org
Signed-off-by: Song Liu <song@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index c6de7d4bfe4d..3f75c5896b92 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -8421,7 +8421,7 @@ int md_setup_cluster(struct mddev *mddev, int nodes) spin_lock(&pers_lock); /* ensure module won't be unloaded */ if (!md_cluster_ops || !try_module_get(md_cluster_mod)) { - pr_warn("can't find md-cluster module or get it's reference.\n"); + pr_warn("can't find md-cluster module or get its reference.\n"); spin_unlock(&pers_lock); return -ENOENT; } |