* [B.A.T.M.A.N.] [PATCH] batman-adv: fix debuginfo macro style issue
@ 2013-11-21 13:17 Simon Wunderlich
2016-03-10 17:58 ` Sven Eckelmann
0 siblings, 1 reply; 2+ messages in thread
From: Simon Wunderlich @ 2013-11-21 13:17 UTC (permalink / raw)
To: b.a.t.m.a.n; +Cc: Simon Wunderlich
From: Simon Wunderlich <simon@open-mesh.com>
Structure initialization within the macros should follow the general
coding style used in the kernel: put the initialization of the first
variable and the closing brace on a separate line.
Reported-by: Antonio Quartulli <antonio@meshcoding.com>
Signed-off-by: Simon Wunderlich <simon@open-mesh.com>
---
debugfs.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/debugfs.c b/debugfs.c
index cd5d24a..92d9d83 100644
--- a/debugfs.c
+++ b/debugfs.c
@@ -322,14 +322,17 @@ static int batadv_nc_nodes_open(struct inode *inode, struct file *file)
#define BATADV_DEBUGINFO(_name, _mode, _open) \
struct batadv_debuginfo batadv_debuginfo_##_name = { \
- .attr = { .name = __stringify(_name), \
- .mode = _mode, }, \
- .fops = { .owner = THIS_MODULE, \
- .open = _open, \
- .read = seq_read, \
- .llseek = seq_lseek, \
- .release = single_release, \
- } \
+ .attr = { \
+ .name = __stringify(_name), \
+ .mode = _mode, \
+ }, \
+ .fops = { \
+ .owner = THIS_MODULE, \
+ .open = _open, \
+ .read = seq_read, \
+ .llseek = seq_lseek, \
+ .release = single_release, \
+ }, \
};
/* the following attributes are general and therefore they will be directly
--
1.7.10.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [B.A.T.M.A.N.] [PATCH] batman-adv: fix debuginfo macro style issue
2013-11-21 13:17 [B.A.T.M.A.N.] [PATCH] batman-adv: fix debuginfo macro style issue Simon Wunderlich
@ 2016-03-10 17:58 ` Sven Eckelmann
0 siblings, 0 replies; 2+ messages in thread
From: Sven Eckelmann @ 2016-03-10 17:58 UTC (permalink / raw)
To: b.a.t.m.a.n, Simon Wunderlich
[-- Attachment #1: Type: text/plain, Size: 683 bytes --]
On Thursday 21 November 2013 14:17:45 Simon Wunderlich wrote:
> From: Simon Wunderlich <simon@open-mesh.com>
>
> Structure initialization within the macros should follow the general
> coding style used in the kernel: put the initialization of the first
> variable and the closing brace on a separate line.
>
> Reported-by: Antonio Quartulli <antonio@meshcoding.com>
> Signed-off-by: Simon Wunderlich <simon@open-mesh.com>
> ---
It looks like this patch doesn't apply anymore. Can you please resent it or
mark it correctly in patchwork [1].
But for the cleanup:
Acked-by: Sven Eckelmann <sven@narfation.org>
Thanks,
Sven
[1] https://patchwork.open-mesh.org/patch/3668/
[-- Attachment #2: This is a digitally signed message part. --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-03-10 17:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-21 13:17 [B.A.T.M.A.N.] [PATCH] batman-adv: fix debuginfo macro style issue Simon Wunderlich
2016-03-10 17:58 ` Sven Eckelmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox