https://github.com/torvalds/linux
Raw File
Tip revision: a39b6ac3781d46ba18193c9dbb2110f31e9bffe9 authored by Linus Torvalds on 10 December 2023, 22:33:40 UTC
Linux 6.7-rc5
Tip revision: a39b6ac
spear_spdif.h
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (ST) 2012 Vipin Kumar (vipin.kumar@st.com)
 */

#ifndef __SOUND_SPDIF_H
#define __SOUND_SPDIF_H

struct spear_spdif_platform_data {
	/* DMA params */
	void *dma_params;
	bool (*filter)(struct dma_chan *chan, void *slave);
	void (*reset_perip)(void);
};

#endif /* SOUND_SPDIF_H */
back to top