diff options
author | Nicoleta Birsan <nicolle.birsan@gmail.com> | 2014-09-14 03:38:34 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-09-19 17:27:28 -0700 |
commit | 472fe30efd52fde30249a04971a62151e0606c1d (patch) | |
tree | 2c3f381e9048e9cd5a0a77fe07a766a98587b10e /drivers/staging/speakup | |
parent | 297cbdaeca2b68aaae6bbb7affa4533430e8e91a (diff) |
Staging: speakup: fix checkpatch warning
This fixes the following checkpatch.pl warning:
WARNING: Missing a blank line after declarations
Signed-off-by: Nicoleta Birsan <nicolle.birsan@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup')
-rw-r--r-- | drivers/staging/speakup/thread.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/speakup/thread.c b/drivers/staging/speakup/thread.c index 4397c8e898c..d95efb702fe 100644 --- a/drivers/staging/speakup/thread.c +++ b/drivers/staging/speakup/thread.c @@ -21,6 +21,7 @@ int speakup_thread(void *data) mutex_lock(&spk_mutex); while (1) { DEFINE_WAIT(wait); + while (1) { spin_lock_irqsave(&speakup_info.spinlock, flags); our_sound = spk_unprocessed_sound; |