xfrm: checkpatch errors with foo * bar
This patch clean up some checkpatch errors like this: ERROR: "foo * bar" should be "foo *bar" ERROR: "(foo*)" should be "(foo *)" Signed-off-by: Weilong Chen <chenweilong@huawei.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
9b7a787d0d
commit
3e94c2dcfd
3 changed files with 13 additions and 13 deletions
|
@ -382,7 +382,7 @@ static inline unsigned long make_jiffies(long secs)
|
|||
return secs*HZ;
|
||||
}
|
||||
|
||||
static enum hrtimer_restart xfrm_timer_handler(struct hrtimer * me)
|
||||
static enum hrtimer_restart xfrm_timer_handler(struct hrtimer *me)
|
||||
{
|
||||
struct tasklet_hrtimer *thr = container_of(me, struct tasklet_hrtimer, timer);
|
||||
struct xfrm_state *x = container_of(thr, struct xfrm_state, mtimer);
|
||||
|
@ -1237,8 +1237,8 @@ struct xfrm_state *xfrm_migrate_state_find(struct xfrm_migrate *m, struct net *n
|
|||
}
|
||||
EXPORT_SYMBOL(xfrm_migrate_state_find);
|
||||
|
||||
struct xfrm_state * xfrm_state_migrate(struct xfrm_state *x,
|
||||
struct xfrm_migrate *m)
|
||||
struct xfrm_state *xfrm_state_migrate(struct xfrm_state *x,
|
||||
struct xfrm_migrate *m)
|
||||
{
|
||||
struct xfrm_state *xc;
|
||||
int err;
|
||||
|
@ -1630,7 +1630,7 @@ EXPORT_SYMBOL(xfrm_state_walk_done);
|
|||
|
||||
static void xfrm_replay_timer_handler(unsigned long data)
|
||||
{
|
||||
struct xfrm_state *x = (struct xfrm_state*)data;
|
||||
struct xfrm_state *x = (struct xfrm_state *)data;
|
||||
|
||||
spin_lock(&x->lock);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue