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 v4.16-rc7 24 lines 568 B view raw
1// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) 2// Copyright(c) 2015-17 Intel Corporation. 3 4#ifndef __SDW_INTEL_H 5#define __SDW_INTEL_H 6 7/** 8 * struct sdw_intel_res - Soundwire Intel resource structure 9 * @mmio_base: mmio base of SoundWire registers 10 * @irq: interrupt number 11 * @handle: ACPI parent handle 12 * @parent: parent device 13 */ 14struct sdw_intel_res { 15 void __iomem *mmio_base; 16 int irq; 17 acpi_handle handle; 18 struct device *parent; 19}; 20 21void *sdw_intel_init(acpi_handle *parent_handle, struct sdw_intel_res *res); 22void sdw_intel_exit(void *arg); 23 24#endif