diff options
author | Valentin Vidic <[email protected]> | 2018-04-10 16:35:46 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2018-04-11 10:28:38 -0700 |
commit | de99626c2e89713cd29860ca26b584d1e6219da0 (patch) | |
tree | bb456054ecb8d8fb200d0c74d16edab7b1eab067 | |
parent | a61fc2cbdf6a753b7000dd216c62285a68755147 (diff) |
include/linux/kfifo.h: fix comment
Clean up unusual formatting in the note about locking.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Valentin Vidic <[email protected]>
Cc: Stefani Seibold <[email protected]>
Cc: Mauro Carvalho Chehab <[email protected]>
Cc: Christophe JAILLET <[email protected]>
Cc: Jiri Kosina <[email protected]>
Cc: Sean Young <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | include/linux/kfifo.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/kfifo.h b/include/linux/kfifo.h index e251533a5939..89fc8dc7bf38 100644 --- a/include/linux/kfifo.h +++ b/include/linux/kfifo.h @@ -41,11 +41,11 @@ */ /* - * Note about locking : There is no locking required until only * one reader - * and one writer is using the fifo and no kfifo_reset() will be * called - * kfifo_reset_out() can be safely used, until it will be only called + * Note about locking: There is no locking required until only one reader + * and one writer is using the fifo and no kfifo_reset() will be called. + * kfifo_reset_out() can be safely used, until it will be only called * in the reader thread. - * For multiple writer and one reader there is only a need to lock the writer. + * For multiple writer and one reader there is only a need to lock the writer. * And vice versa for only one writer and multiple reader there is only a need * to lock the reader. */ |