]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ALSA: fireface: obsolete proc node to leave one node
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Sun, 20 Jan 2019 08:25:47 +0000 (17:25 +0900)
committerTakashi Iwai <tiwai@suse.de>
Mon, 21 Jan 2019 14:12:16 +0000 (15:12 +0100)
In a series of Fireface, latter protocol has no way for drivers to
retrieve current clock configuration. On the other hand, this driver
has proc node for it.

This commit removes a proc node to dump both clock configuration
and synchronization status in one proc node.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/firewire/fireface/ff-proc.c

index a0c550dabe9ace95a4186f71cbad32eaf5e84c57..37f84b7fc432bcac06b72ea7359fe59979d3e70f 100644 (file)
@@ -8,10 +8,8 @@
 
 #include "./ff.h"
 
-static void proc_dump_clock_config(struct snd_info_entry *entry,
-                                  struct snd_info_buffer *buffer)
+static void dump_clock_config(struct snd_ff *ff, struct snd_info_buffer *buffer)
 {
-       struct snd_ff *ff = entry->private_data;
        __le32 reg;
        u32 data;
        unsigned int rate;
@@ -87,10 +85,8 @@ static void proc_dump_clock_config(struct snd_info_entry *entry,
        snd_iprintf(buffer, "Sync to clock source: %s\n", src);
 }
 
-static void proc_dump_sync_status(struct snd_info_entry *entry,
-                                 struct snd_info_buffer *buffer)
+static void dump_sync_status(struct snd_ff *ff, struct snd_info_buffer *buffer)
 {
-       struct snd_ff *ff = entry->private_data;
        __le32 reg;
        u32 data;
        int err;
@@ -213,6 +209,15 @@ static void proc_dump_sync_status(struct snd_info_entry *entry,
        snd_iprintf(buffer, "%d\n", (data & 0x3ff) * 250);
 }
 
+static void proc_dump_status(struct snd_info_entry *entry,
+                            struct snd_info_buffer *buffer)
+{
+       struct snd_ff *ff = entry->private_data;
+
+       dump_clock_config(ff, buffer);
+       dump_sync_status(ff, buffer);
+}
+
 static void add_node(struct snd_ff *ff, struct snd_info_entry *root,
                     const char *name,
                     void (*op)(struct snd_info_entry *e,
@@ -247,6 +252,5 @@ void snd_ff_proc_init(struct snd_ff *ff)
                return;
        }
 
-       add_node(ff, root, "clock-config", proc_dump_clock_config);
-       add_node(ff, root, "sync-status", proc_dump_sync_status);
+       add_node(ff, root, "status", proc_dump_status);
 }