Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4620b49f authored by Vegard Nossum's avatar Vegard Nossum Committed by Ingo Molnar
Browse files

softirq: remove initialization of static per-cpu variable

parent 9583f3d9
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -359,10 +359,8 @@ struct tasklet_head
	struct tasklet_struct **tail;
};

/* Some compilers disobey section attribute on statics when not
   initialized -- RR */
static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL };
static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL };
static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec);
static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec);

void __tasklet_schedule(struct tasklet_struct *t)
{