1. 06 10月, 2010 11 次提交
  2. 04 10月, 2010 1 次提交
  3. 02 10月, 2010 1 次提交
  4. 30 9月, 2010 2 次提交
  5. 23 9月, 2010 1 次提交
  6. 22 9月, 2010 1 次提交
  7. 17 9月, 2010 1 次提交
  8. 16 9月, 2010 2 次提交
  9. 15 9月, 2010 2 次提交
    • J
      ALSA: snd-aloop - fix the "PCM Playback Channels" kcontrol · 1446c5fb
      Jaroslav Kysela 提交于
      Obvious copy-and-paste error.
      Signed-off-by: NJaroslav Kysela <perex@perex.cz>
      1446c5fb
    • A
      sound: autoconvert trivial BKL users to private mutex · 645ef9ef
      Arnd Bergmann 提交于
      The usage of the BKL in the OSS sound drivers is
      trivial, and each of them only locks against itself,
      so it can be turned into per-driver mutexes.
      
      This is the script that was used for the conversion:
      
      file=$1
      name=$2
      if grep -q lock_kernel ${file} ; then
          if grep -q 'include.*linux.mutex.h' ${file} ; then
                  sed -i '/include.*<linux\/smp_lock.h>/d' ${file}
          else
                  sed -i 's/include.*<linux\/smp_lock.h>.*$/include <linux\/mutex.h>/g' ${file}
          fi
          sed -i ${file} \
              -e "/^#include.*linux.mutex.h/,$ {
                      1,/^\(static\|int\|long\)/ {
                           /^\(static\|int\|long\)/istatic DEFINE_MUTEX(${name}_mutex);
      
      } }"  \
          -e "s/\(un\)*lock_kernel\>[ ]*()/mutex_\1lock(\&${name}_mutex)/g" \
          -e '/[      ]*cycle_kernel_lock();/d'
      else
          sed -i -e '/include.*\<smp_lock.h\>/d' ${file}  \
                      -e '/cycle_kernel_lock()/d'
      fi
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      645ef9ef
  10. 14 9月, 2010 5 次提交
  11. 13 9月, 2010 1 次提交
  12. 12 9月, 2010 6 次提交
  13. 11 9月, 2010 6 次提交