Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.17-rc7 15 lines 970 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* This file is meant to be include multiple times by other headers */ 3 4DEF_PCI_AC_RET(inb, u8, (unsigned long port), (port)) 5DEF_PCI_AC_RET(inw, u16, (unsigned long port), (port)) 6DEF_PCI_AC_RET(inl, u32, (unsigned long port), (port)) 7DEF_PCI_AC_NORET(outb, (u8 val, unsigned long port), (val, port)) 8DEF_PCI_AC_NORET(outw, (u16 val, unsigned long port), (val, port)) 9DEF_PCI_AC_NORET(outl, (u32 val, unsigned long port), (val, port)) 10DEF_PCI_AC_NORET(insb, (unsigned long p, void *b, unsigned long c), (p, b, c)) 11DEF_PCI_AC_NORET(insw, (unsigned long p, void *b, unsigned long c), (p, b, c)) 12DEF_PCI_AC_NORET(insl, (unsigned long p, void *b, unsigned long c), (p, b, c)) 13DEF_PCI_AC_NORET(outsb, (unsigned long p, const void *b, unsigned long c), (p, b, c)) 14DEF_PCI_AC_NORET(outsw, (unsigned long p, const void *b, unsigned long c), (p, b, c)) 15DEF_PCI_AC_NORET(outsl, (unsigned long p, const void *b, unsigned long c), (p, b, c))