Home
last modified time | relevance | path

Searched refs:oldfunc (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/arch/x86/include/asm/
Dalternative.h207 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument
209 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
217 #define alternative_call_2(oldfunc, newfunc1, feature1, newfunc2, feature2, \ argument
221 : output : [old] "i" (oldfunc), [new1] "i" (newfunc1), \
/linux-4.1.27/scripts/
Dcheckpatch.pl5183 my $oldfunc = $3;
5187 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
5197 "Prefer $newfunc over $oldfunc with multiply\n" . $herecurr) &&