Skip to content

Commit

Permalink
ALSA: Remove struct snd_monitor_file from public sound/core.h
Browse files Browse the repository at this point in the history
The struct snd_monitor_file is used locally only in sound/core/init.c,
thus it should be moved there from the public sound/core.h.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Sep 7, 2009
1 parent 9d32e03 commit 82a783f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
9 changes: 0 additions & 9 deletions include/sound/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,6 @@ struct snd_device {

#define snd_device(n) list_entry(n, struct snd_device, list)

/* monitor files for graceful shutdown (hotplug) */

struct snd_monitor_file {
struct file *file;
const struct file_operations *disconnected_f_op;
struct list_head shutdown_list; /* still need to shutdown */
struct list_head list; /* link of monitor files */
};

/* main structure for soundcard */

struct snd_card {
Expand Down
8 changes: 8 additions & 0 deletions sound/core/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
#include <sound/control.h>
#include <sound/info.h>

/* monitor files for graceful shutdown (hotplug) */
struct snd_monitor_file {
struct file *file;
const struct file_operations *disconnected_f_op;
struct list_head shutdown_list; /* still need to shutdown */
struct list_head list; /* link of monitor files */
};

static DEFINE_SPINLOCK(shutdown_lock);
static LIST_HEAD(shutdown_files);

Expand Down

0 comments on commit 82a783f

Please sign in to comment.