1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-06 13:09:50 +00:00

Shoot a couple of style bugs down in the macro declarations.

Submitted by:	bde
This commit is contained in:
Sean Bruno 2017-01-26 13:46:47 +00:00
parent d177f4b8f1
commit becbcdcb6b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=312814

View File

@ -80,7 +80,6 @@ int taskqgroup_adjust(struct taskqgroup *qgroup, int cnt, int stride);
#define TASKQGROUP_DECLARE(name) \
extern struct taskqgroup *qgroup_##name
#ifdef EARLY_AP_STARTUP
#define TASKQGROUP_DEFINE(name, cnt, stride) \
\
@ -94,8 +93,7 @@ taskqgroup_define_##name(void *arg) \
} \
\
SYSINIT(taskqgroup_##name, SI_SUB_INIT_IF, SI_ORDER_FIRST, \
taskqgroup_define_##name, NULL) \
taskqgroup_define_##name, NULL)
#else /* !EARLY_AP_STARTUP */
#define TASKQGROUP_DEFINE(name, cnt, stride) \
\
@ -117,8 +115,7 @@ taskqgroup_adjust_##name(void *arg) \
} \
\
SYSINIT(taskqgroup_adj_##name, SI_SUB_SMP, SI_ORDER_ANY, \
taskqgroup_adjust_##name, NULL) \
taskqgroup_adjust_##name, NULL)
#endif /* EARLY_AP_STARTUP */
TASKQGROUP_DECLARE(net);