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.4 18 lines 397 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * include/linux/platform_data/uio_dmem_genirq.h 4 * 5 * Copyright (C) 2012 Damian Hobson-Garcia 6 */ 7 8#ifndef _UIO_DMEM_GENIRQ_H 9#define _UIO_DMEM_GENIRQ_H 10 11#include <linux/uio_driver.h> 12 13struct uio_dmem_genirq_pdata { 14 struct uio_info uioinfo; 15 unsigned int *dynamic_region_sizes; 16 unsigned int num_dynamic_regions; 17}; 18#endif /* _UIO_DMEM_GENIRQ_H */