projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71b1fd9
)
staging: dgnc: Fix space required after that ','
author
Seunghun Lee
<
[email protected]
>
Thu, 24 Jul 2014 15:26:53 +0000
(
00:26
+0900)
committer
Greg Kroah-Hartman
<
[email protected]
>
Thu, 24 Jul 2014 22:04:22 +0000
(15:04 -0700)
This patch fixes checkpatch errors:
"space required after that ','"
Signed-off-by: Seunghun Lee <
[email protected]
>
Signed-off-by: Greg Kroah-Hartman <
[email protected]
>
drivers/staging/dgnc/dgnc_driver.h
patch
|
blob
|
history
diff --git
a/drivers/staging/dgnc/dgnc_driver.h
b/drivers/staging/dgnc/dgnc_driver.h
index fe5ea903bbe25474ad1ab9cde1af3f39acdf433e..b40ee2c9f61c0aad88b19f7b4701393aadb87823 100644
(file)
--- a/
drivers/staging/dgnc/dgnc_driver.h
+++ b/
drivers/staging/dgnc/dgnc_driver.h
@@
-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.