Commit fc1cfd3a authored by Seunghun Lee's avatar Seunghun Lee Committed by Greg Kroah-Hartman

staging: dgnc: Fix space required after that ','

This patch fixes checkpatch errors:
"space required after that ','"
Signed-off-by: default avatarSeunghun Lee <waydi1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 71b1fd9c
......@@ -219,8 +219,8 @@
* Makes spotting lock/unlock locations easier.
*/
# define DGNC_SPINLOCK_INIT(x) spin_lock_init(&(x))
# define DGNC_LOCK(x,y) spin_lock_irqsave(&(x), y)
# define DGNC_UNLOCK(x,y) spin_unlock_irqrestore(&(x), y)
# define DGNC_LOCK(x, y) spin_lock_irqsave(&(x), y)
# define DGNC_UNLOCK(x, y) spin_unlock_irqrestore(&(x), y)
/*
* All the possible states the driver can be while being loaded.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment