// SPDX-License-Identifier: GPL-2.0-only /* * motu-proc.c - a part of driver for MOTU FireWire series * * Copyright (c) 2015-2017 Takashi Sakamoto <[email protected]> */ #include "./motu.h" static const char *const clock_names[] = …; static void proc_read_clock(struct snd_info_entry *entry, struct snd_info_buffer *buffer) { … } static void proc_read_format(struct snd_info_entry *entry, struct snd_info_buffer *buffer) { … } static void add_node(struct snd_motu *motu, struct snd_info_entry *root, const char *name, void (*op)(struct snd_info_entry *e, struct snd_info_buffer *b)) { … } void snd_motu_proc_init(struct snd_motu *motu) { … }