diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2006-02-27 10:03:19 +0000 |
---|---|---|
committer | Clemens Ladisch <clemens@ladisch.de> | 2006-02-27 10:03:19 +0000 |
commit | 09f598e57cc484211ab09063d47b0e05926e99a2 (patch) | |
tree | 9bd9b74294badb3be5fd32b0b647746d94ef0a9c /src/seq | |
parent | 3f00bc728ba1853cc1b010e59d6230f533c44f1c (diff) |
allow changing of device directory path
Add configuration options to change the default device path from the
default /dev/snd. This is useful for embedded systems that do not want
subdirectories in /dev.
Diffstat (limited to 'src/seq')
-rw-r--r-- | src/seq/seq_hw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/seq/seq_hw.c b/src/seq/seq_hw.c index 56d87a11..8876e60d 100644 --- a/src/seq/seq_hw.c +++ b/src/seq/seq_hw.c @@ -30,8 +30,8 @@ const char *_snd_module_seq_hw = ""; #endif #ifndef DOC_HIDDEN -#define SNDRV_FILE_SEQ "/dev/snd/seq" -#define SNDRV_FILE_ALOADSEQ "/dev/aloadSEQ" +#define SNDRV_FILE_SEQ ALSA_DEVICE_DIRECTORY "seq" +#define SNDRV_FILE_ALOADSEQ ALOAD_DEVICE_DIRECTORY "aloadSEQ" #define SNDRV_SEQ_VERSION_MAX SNDRV_PROTOCOL_VERSION(1, 0, 1) typedef struct { |