[PATCH] kernel/wait.c: fix 80 characters issue

From: Cong Ding
Date: Tue Dec 25 2012 - 09:03:53 EST


fix 80 characters issue

Signed-off-by: Cong Ding <dinggnu@xxxxxxxxx>
---
kernel/wait.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/kernel/wait.c b/kernel/wait.c
index 6698e0c..a80a9e4 100644
--- a/kernel/wait.c
+++ b/kernel/wait.c
@@ -10,7 +10,8 @@
#include <linux/wait.h>
#include <linux/hash.h>

-void __init_waitqueue_head(wait_queue_head_t *q, const char *name, struct lock_class_key *key)
+void __init_waitqueue_head(wait_queue_head_t *q, const char *name,
+ struct lock_class_key *key)
{
spin_lock_init(&q->lock);
lockdep_set_class_and_name(&q->lock, key, name);
@@ -160,7 +161,8 @@ void abort_exclusive_wait(wait_queue_head_t *q, wait_queue_t *wait,
}
EXPORT_SYMBOL(abort_exclusive_wait);

-int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key)
+int autoremove_wake_function(wait_queue_t *wait, unsigned mode, int sync,
+ void *key)
{
int ret = default_wake_function(wait, mode, sync, key);

--
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/