/* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef __SOUND_HWDEP_H #define __SOUND_HWDEP_H /* * Hardware dependent layer * Copyright (c) by Jaroslav Kysela <[email protected]> */ #include <sound/asound.h> #include <linux/poll.h> struct snd_hwdep; /* hwdep file ops; all ops can be NULL */ struct snd_hwdep_ops { … }; struct snd_hwdep { … }; extern int snd_hwdep_new(struct snd_card *card, char *id, int device, struct snd_hwdep **rhwdep); #endif /* __SOUND_HWDEP_H */