2019-05-27 09:55:05 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* ALSA sequencer /proc info
|
|
|
|
* Copyright (c) 1998 by Frank van de Pol <fvdpol@coil.demon.nl>
|
|
|
|
*/
|
|
|
|
#ifndef __SND_SEQ_INFO_H
|
|
|
|
#define __SND_SEQ_INFO_H
|
|
|
|
|
|
|
|
#include <sound/info.h>
|
|
|
|
#include <sound/seq_kernel.h>
|
|
|
|
|
2005-11-17 16:04:02 +03:00
|
|
|
void snd_seq_info_clients_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);
|
|
|
|
void snd_seq_info_timer_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);
|
|
|
|
void snd_seq_info_queues_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
2015-05-27 14:45:45 +03:00
|
|
|
#ifdef CONFIG_SND_PROC_FS
|
2018-08-01 17:37:02 +03:00
|
|
|
int snd_seq_info_init(void);
|
|
|
|
void snd_seq_info_done(void);
|
2005-12-01 12:43:51 +03:00
|
|
|
#else
|
|
|
|
static inline int snd_seq_info_init(void) { return 0; }
|
2018-08-01 17:37:02 +03:00
|
|
|
static inline void snd_seq_info_done(void) {}
|
2005-12-01 12:43:51 +03:00
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#endif
|