block: bio: fix a warning at the kernel-doc markups
authorMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 27 Aug 2020 05:51:44 +0000 (07:51 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 15 Oct 2020 05:49:47 +0000 (07:49 +0200)
commit5b874af627004ac3660c96cb1bcfaefb7c9e7130
tree7b413780f5e4ac96b95d9a924fbf7a05701318af
parent209b44c804c0b99a7697950e2596b58cd838358d
block: bio: fix a warning at the kernel-doc markups

Using "@bio's parent" causes the following waring:
./block/bio.c:10: WARNING: Inline emphasis start-string without end-string.

The main problem here is that this would be converted into:

**bio**'s parent

By kernel-doc, which is not a valid notation. It would be
possible to use, instead, this kernel-doc markup:

``bio's`` parent

Yet, here, is probably simpler to just use an altenative language:

the parent of @bio

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
block/bio.c