mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-22 06:32:08 +00: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:
parent
fc9b52cd8f
commit
7ad5b3a505
12 changed files with 67 additions and 68 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue