projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e8a2eb
)
sh: macro whitespace fixes
author
Michael S. Tsirkin
<mst@redhat.com>
Tue, 6 Jan 2015 13:11:13 +0000
(15:11 +0200)
committer
Michael S. Tsirkin
<mst@redhat.com>
Tue, 13 Jan 2015 13:24:08 +0000
(15:24 +0200)
While working on arch/sh/include/asm/uaccess.h, I noticed
that one macro within this header is made harder to read because it
violates a coding style rule: space is missing after comma.
Fix it up.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
arch/sh/include/asm/segment.h
patch
|
blob
|
history
diff --git
a/arch/sh/include/asm/segment.h
b/arch/sh/include/asm/segment.h
index 5e2725f4ac4901dd6be34c567417bfc06e327824..ff795d3a6909f8f5a441237d71efd88be048e101 100644
(file)
--- a/
arch/sh/include/asm/segment.h
+++ b/
arch/sh/include/asm/segment.h
@@
-23,7
+23,7
@@
typedef struct {
#define USER_DS KERNEL_DS
#endif
-#define segment_eq(a,
b)
((a).seg == (b).seg)
+#define segment_eq(a,
b)
((a).seg == (b).seg)
#define get_ds() (KERNEL_DS)