diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-12 06:53:50 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-05-16 07:44:10 -0400 |
commit | f16df9f76582fc306d62a4518e78f2cf3227707f (patch) | |
tree | 7784d9c1e610608c0ed5b85bc3bb2a8baa19e2f6 /fs/eventfd.c | |
parent | 0117d4272b1acd151812abf4a6702fc7873e16ea (diff) |
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 <mchehab@s-opensource.com>
Diffstat (limited to 'fs/eventfd.c')
-rw-r--r-- | fs/eventfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/eventfd.c b/fs/eventfd.c index 68b9fffcb2c8..beac8175de19 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c | |||
@@ -215,8 +215,8 @@ EXPORT_SYMBOL_GPL(eventfd_ctx_remove_wait_queue); | |||
215 | * | 215 | * |
216 | * Returns %0 if successful, or the following error codes: | 216 | * Returns %0 if successful, or the following error codes: |
217 | * | 217 | * |
218 | * -EAGAIN : The operation would have blocked but @no_wait was non-zero. | 218 | * - -EAGAIN : The operation would have blocked but @no_wait was non-zero. |
219 | * -ERESTARTSYS : A signal interrupted the wait operation. | 219 | * - -ERESTARTSYS : A signal interrupted the wait operation. |
220 | * | 220 | * |
221 | * If @no_wait is zero, the function might sleep until the eventfd internal | 221 | * If @no_wait is zero, the function might sleep until the eventfd internal |
222 | * counter becomes greater than zero. | 222 | * counter becomes greater than zero. |