Home
last modified time | relevance | path

Searched refs:newfunc (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/drivers/pci/hotplug/
H A Dibmphp_pci.c155 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card()
156 if (!newfunc) in ibmphp_configure_card()
160 newfunc->device = device; in ibmphp_configure_card()
162 cur_func = newfunc; in ibmphp_configure_card()
192 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card()
193 if (!newfunc) in ibmphp_configure_card()
219 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card()
220 if (!newfunc) in ibmphp_configure_card()
229 cur_func = newfunc; in ibmphp_configure_card()
264 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card()
[all …]
H A Dacpiphp_glue.c233 struct acpiphp_func *newfunc; in acpiphp_add_context() local
262 newfunc = &context->func; in acpiphp_add_context()
263 newfunc->function = function; in acpiphp_add_context()
264 newfunc->parent = bridge; in acpiphp_add_context()
272 newfunc->flags = FUNC_HAS_EJ0; in acpiphp_add_context()
275 newfunc->flags |= FUNC_HAS_STA; in acpiphp_add_context()
329 newfunc->slot = slot; in acpiphp_add_context()
330 list_add_tail(&newfunc->sibling, &slot->funcs); in acpiphp_add_context()
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dtinfoil.py64 newfunc = partial(self.remoteCommand, name)
65 setattr(self, name, newfunc)
66 return newfunc
80 newfunc = partial(self.remoteCommand, name)
81 setattr(self, name, newfunc)
82 return newfunc
107 newfunc = partial(self.remoteCommand, name)
108 setattr(self, name, newfunc)
109 return newfunc
/openbmc/linux/arch/x86/include/asm/
H A Dalternative.h303 #define alternative_call(oldfunc, newfunc, ft_flags, output, input...) \ argument
305 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
/openbmc/linux/scripts/
H A Dcheckpatch.pl7217 my $newfunc = "kmalloc_array";
7218 $newfunc = "kvmalloc_array" if ($oldfunc eq "kvmalloc");
7219 $newfunc = "kvcalloc" if ($oldfunc eq "kvzalloc");
7220 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
7233 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
7236 …s*((?:kv|k)[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . '…
/openbmc/u-boot/scripts/
H A Dcheckpatch.pl6105 my $newfunc = "kmalloc_array";
6106 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc");
6119 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) &&
6122 …rens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . '…