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 v5.4-rc8 9 lines 273 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _PROBE_ROMS_H_ 3#define _PROBE_ROMS_H_ 4struct pci_dev; 5 6extern void __iomem *pci_map_biosrom(struct pci_dev *pdev); 7extern void pci_unmap_biosrom(void __iomem *rom); 8extern size_t pci_biosrom_size(struct pci_dev *pdev); 9#endif