Searched refs:newfunc (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/kernel/drivers/pci/hotplug/ |
| H A D | ibmphp_pci.c | 74 struct pci_func *newfunc; /* for multi devices */ in ibmphp_configure_card() local 155 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card() 156 if (!newfunc) in ibmphp_configure_card() 159 newfunc->busno = cur_func->busno; in ibmphp_configure_card() 160 newfunc->device = device; in ibmphp_configure_card() 161 cur_func->next = newfunc; in ibmphp_configure_card() 162 cur_func = newfunc; in ibmphp_configure_card() 164 newfunc->irq[j] = cur_func->irq[j]; in ibmphp_configure_card() 192 newfunc = kzalloc(sizeof(*newfunc), GFP_KERNEL); in ibmphp_configure_card() 193 if (!newfunc) in ibmphp_configure_card() [all …]
|
| H A D | acpiphp_glue.c | 233 struct acpiphp_func *newfunc; in acpiphp_add_context() local 261 newfunc = &context->func; in acpiphp_add_context() 262 newfunc->function = function; in acpiphp_add_context() 263 newfunc->parent = bridge; in acpiphp_add_context() 271 newfunc->flags = FUNC_HAS_EJ0; in acpiphp_add_context() 274 newfunc->flags |= FUNC_HAS_STA; in acpiphp_add_context() 328 newfunc->slot = slot; in acpiphp_add_context() 329 list_add_tail(&newfunc->sibling, &slot->funcs); in acpiphp_add_context()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | tinfoil.py | 63 newfunc = partial(self.remoteCommand, name) 64 setattr(self, name, newfunc) 65 return newfunc 79 newfunc = partial(self.remoteCommand, name) 80 setattr(self, name, newfunc) 81 return newfunc 106 newfunc = partial(self.remoteCommand, name) 107 setattr(self, name, newfunc) 108 return newfunc
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A D | alternative.h | 252 #define alternative_call(oldfunc, newfunc, feature, output, input...) \ argument 254 : output : [old] "i" (oldfunc), [new] "i" (newfunc), ## input)
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | checkpatch.pl | 6009 my $newfunc = "kmalloc_array"; 6010 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc"); 6026 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) && 6029 …rens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . '…
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | checkpatch.pl | 6565 my $newfunc = "kmalloc_array"; 6566 $newfunc = "kcalloc" if ($oldfunc eq "kzalloc"); 6579 "Prefer $newfunc over $oldfunc with multiply\n" . $herectx) && 6582 …rens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . '…
|