https://github.com/torvalds/linux
Raw File
Tip revision: 4cece764965020c22cff7665b18a012006359095 authored by Linus Torvalds on 24 March 2024, 21:10:05 UTC
Linux 6.9-rc1
Tip revision: 4cece76
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