From: Mauro Carvalho Chehab Date: Fri, 12 May 2017 10:53:50 +0000 (-0300) Subject: fs: eventfd: fix identation on kernel-doc X-Git-Tag: v4.13-rc1~34^2~21^2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f16df9f76582fc306d62a4518e78f2cf3227707f;p=platform%2Fkernel%2Flinux-exynos.git fs: eventfd: fix identation on kernel-doc Sphinx require explicit tags in order to use a list of possible values, otherwise it produces this error: ./fs/eventfd.c:219: WARNING: Option list ends without a blank line; unexpected unindent. Signed-off-by: Mauro Carvalho Chehab --- diff --git a/fs/eventfd.c b/fs/eventfd.c index 68b9fff..beac817 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -215,8 +215,8 @@ EXPORT_SYMBOL_GPL(eventfd_ctx_remove_wait_queue); * * Returns %0 if successful, or the following error codes: * - * -EAGAIN : The operation would have blocked but @no_wait was non-zero. - * -ERESTARTSYS : A signal interrupted the wait operation. + * - -EAGAIN : The operation would have blocked but @no_wait was non-zero. + * - -ERESTARTSYS : A signal interrupted the wait operation. * * If @no_wait is zero, the function might sleep until the eventfd internal * counter becomes greater than zero.