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.10 20 lines 385 B view raw
1/* SPDX-License-Identifier: GPL-2.0 2 * 3 * platform header for the SIU ASoC driver 4 * 5 * Copyright (C) 2009-2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de> 6 */ 7 8#ifndef ASM_SIU_H 9#define ASM_SIU_H 10 11struct device; 12 13struct siu_platform { 14 unsigned int dma_slave_tx_a; 15 unsigned int dma_slave_rx_a; 16 unsigned int dma_slave_tx_b; 17 unsigned int dma_slave_rx_b; 18}; 19 20#endif /* ASM_SIU_H */