diff options
author | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2011-02-02 01:23:34 +0000 |
---|---|---|
committer | Vasilis Tsiligiannis <acinonyx@openwrt.gr> | 2011-02-02 01:23:34 +0000 |
commit | bd8a1549eb8011ad00ef08f8596366a576fd49a3 (patch) | |
tree | 03e4f7722866f7a37195072ca252bce2cd5bfc8b /package/base-files/files | |
parent | 325ef30254da6ad43f8a514f25c4dcff474453fb (diff) | |
download | upstream-bd8a1549eb8011ad00ef08f8596366a576fd49a3.tar.gz upstream-bd8a1549eb8011ad00ef08f8596366a576fd49a3.tar.bz2 upstream-bd8a1549eb8011ad00ef08f8596366a576fd49a3.zip |
base-files: Fix alsa raw audio device hotplug rule
SVN-Revision: 25301
Diffstat (limited to 'package/base-files/files')
-rw-r--r-- | package/base-files/files/etc/hotplug2-common.rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/files/etc/hotplug2-common.rules b/package/base-files/files/etc/hotplug2-common.rules index bd30e55632..dffca0b87f 100644 --- a/package/base-files/files/etc/hotplug2-common.rules +++ b/package/base-files/files/etc/hotplug2-common.rules @@ -18,7 +18,7 @@ DEVICENAME ~~ ^ppp { next-event } -DEVICENAME ~~ (^controlC[0-9]$|^pcmC0D0|^timer$) { +DEVICENAME ~~ (^controlC[0-9]$|^pcmC[0-9]D[0-9]|^timer$) { makedev /dev/snd/%DEVICENAME% 0644 next-event } |