Searched refs:oldfunc (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/arch/x86/include/asm/ |
D | alternative.h | 253 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument 255 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input) 263 #define alternative_call_2(oldfunc, newfunc1, feature1, newfunc2, feature2, \ argument 268 : [old] "i" (oldfunc), [new1] "i" (newfunc1), \
|
/linux-6.1.9/scripts/ |
D | checkpatch.pl | 7095 my $oldfunc = $3; 7099 $newfunc = "kvmalloc_array" if ($oldfunc eq "kvmalloc"); 7100 $newfunc = "kvcalloc" if ($oldfunc eq "kvzalloc"); 7101 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc"); 7114 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
|