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.0-rc7 19 lines 434 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2022, Intel Corporation. All rights reserved. 4 */ 5#ifndef _LINUX_MEI_AUX_H 6#define _LINUX_MEI_AUX_H 7 8#include <linux/auxiliary_bus.h> 9 10struct mei_aux_device { 11 struct auxiliary_device aux_dev; 12 int irq; 13 struct resource bar; 14}; 15 16#define auxiliary_dev_to_mei_aux_dev(auxiliary_dev) \ 17 container_of(auxiliary_dev, struct mei_aux_device, aux_dev) 18 19#endif /* _LINUX_MEI_AUX_H */