You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
kernel: remove fastcall in kernel/*
[akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
fc9b52cd8f
commit
7ad5b3a505
+3
-3
@@ -327,7 +327,7 @@ static void timer_stats_account_timer(struct timer_list *timer) {}
|
||||
* init_timer() must be done to a timer prior calling *any* of the
|
||||
* other timer functions.
|
||||
*/
|
||||
void fastcall init_timer(struct timer_list *timer)
|
||||
void init_timer(struct timer_list *timer)
|
||||
{
|
||||
timer->entry.next = NULL;
|
||||
timer->base = __raw_get_cpu_var(tvec_bases);
|
||||
@@ -339,7 +339,7 @@ void fastcall init_timer(struct timer_list *timer)
|
||||
}
|
||||
EXPORT_SYMBOL(init_timer);
|
||||
|
||||
void fastcall init_timer_deferrable(struct timer_list *timer)
|
||||
void init_timer_deferrable(struct timer_list *timer)
|
||||
{
|
||||
init_timer(timer);
|
||||
timer_set_deferrable(timer);
|
||||
@@ -1042,7 +1042,7 @@ static void process_timeout(unsigned long __data)
|
||||
*
|
||||
* In all cases the return value is guaranteed to be non-negative.
|
||||
*/
|
||||
fastcall signed long __sched schedule_timeout(signed long timeout)
|
||||
signed long __sched schedule_timeout(signed long timeout)
|
||||
{
|
||||
struct timer_list timer;
|
||||
unsigned long expire;
|
||||
|
||||
Reference in New Issue
Block a user