<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux-toradex.git/sound/drivers/opl3, branch tegra</title>
<subtitle>Linux kernel for Apalis and Colibri modules</subtitle>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/'/>
<entry>
<title>include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h</title>
<updated>2010-03-30T13:02:32+00:00</updated>
<author>
<name>Tejun Heo</name>
<email>tj@kernel.org</email>
</author>
<published>2010-03-24T08:04:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=5a0e3ad6af8660be21ca98a971cd00f331318c05'/>
<id>5a0e3ad6af8660be21ca98a971cd00f331318c05</id>
<content type='text'>
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.

percpu.h -&gt; slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.

  http://userweb.kernel.org/~tj/misc/slabh-sweep.py

The script does the followings.

* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.

* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.

* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.

The conversion was done in the following steps.

1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.

2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.

3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.

4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.

5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.

6. percpu.h was updated not to include slab.h.

7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).

   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig

8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.

Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.

Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;
Guess-its-ok-by: Christoph Lameter &lt;cl@linux-foundation.org&gt;
Cc: Ingo Molnar &lt;mingo@redhat.com&gt;
Cc: Lee Schermerhorn &lt;Lee.Schermerhorn@hp.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.

percpu.h -&gt; slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.

  http://userweb.kernel.org/~tj/misc/slabh-sweep.py

The script does the followings.

* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.

* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.

* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.

The conversion was done in the following steps.

1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.

2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.

3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.

4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.

5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.

6. percpu.h was updated not to include slab.h.

7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).

   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig

8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.

Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.

Signed-off-by: Tejun Heo &lt;tj@kernel.org&gt;
Guess-its-ok-by: Christoph Lameter &lt;cl@linux-foundation.org&gt;
Cc: Ingo Molnar &lt;mingo@redhat.com&gt;
Cc: Lee Schermerhorn &lt;Lee.Schermerhorn@hp.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ALSA: opl3: circular locking in the snd_opl3_note_on() and snd_opl3_note_off()</title>
<updated>2009-10-08T09:48:10+00:00</updated>
<author>
<name>Krzysztof Helt</name>
<email>krzysztof.h1@wp.pl</email>
</author>
<published>2009-10-07T20:51:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=8dce39b8955be6164172cb6204ef8fc21de27431'/>
<id>8dce39b8955be6164172cb6204ef8fc21de27431</id>
<content type='text'>
Fix following circular locking in the opl3 driver.

=======================================================
[ INFO: possible circular locking dependency detected ]
2.6.32-rc3 #87
-------------------------------------------------------
swapper/0 is trying to acquire lock:
 (&amp;opl3-&gt;voice_lock){..-...}, at: [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]

but task is already holding lock:
 (&amp;opl3-&gt;sys_timer_lock){..-...}, at: [&lt;cca75169&gt;] snd_opl3_timer_func+0x19/0xc0 [snd_opl3_synth]

which lock already depends on the new lock.

the existing dependency chain (in reverse order) is:

-&gt; #1 (&amp;opl3-&gt;sys_timer_lock){..-...}:
       [&lt;c02461d5&gt;] validate_chain+0xa25/0x1040
       [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
       [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
       [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
       [&lt;cca75046&gt;] snd_opl3_note_on+0x686/0x790 [snd_opl3_synth]
       [&lt;cca68912&gt;] snd_midi_process_event+0x322/0x590 [snd_seq_midi_emul]
       [&lt;cca74245&gt;] snd_opl3_synth_event_input+0x15/0x20 [snd_opl3_synth]
       [&lt;cca4dcc0&gt;] snd_seq_deliver_single_event+0x100/0x200 [snd_seq]
       [&lt;cca4de07&gt;] snd_seq_deliver_event+0x47/0x1f0 [snd_seq]
       [&lt;cca4e50b&gt;] snd_seq_dispatch_event+0x3b/0x140 [snd_seq]
       [&lt;cca5008c&gt;] snd_seq_check_queue+0x10c/0x120 [snd_seq]
       [&lt;cca5037b&gt;] snd_seq_enqueue_event+0x6b/0xe0 [snd_seq]
       [&lt;cca4e0fd&gt;] snd_seq_client_enqueue_event+0xdd/0x100 [snd_seq]
       [&lt;cca4eb7a&gt;] snd_seq_write+0xea/0x190 [snd_seq]
       [&lt;c02827b6&gt;] vfs_write+0x96/0x160
       [&lt;c0282c9d&gt;] sys_write+0x3d/0x70
       [&lt;c0202c45&gt;] syscall_call+0x7/0xb

-&gt; #0 (&amp;opl3-&gt;voice_lock){..-...}:
       [&lt;c02467e6&gt;] validate_chain+0x1036/0x1040
       [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
       [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
       [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
       [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
       [&lt;cca751f0&gt;] snd_opl3_timer_func+0xa0/0xc0 [snd_opl3_synth]
       [&lt;c022ac46&gt;] run_timer_softirq+0x166/0x1e0
       [&lt;c02269e8&gt;] __do_softirq+0x78/0x110
       [&lt;c0226ac6&gt;] do_softirq+0x46/0x50
       [&lt;c0226e26&gt;] irq_exit+0x36/0x40
       [&lt;c0204bd2&gt;] do_IRQ+0x42/0xb0
       [&lt;c020328e&gt;] common_interrupt+0x2e/0x40
       [&lt;c021092f&gt;] apm_cpu_idle+0x10f/0x290
       [&lt;c0201b11&gt;] cpu_idle+0x21/0x40
       [&lt;c04443cd&gt;] rest_init+0x4d/0x60
       [&lt;c055c835&gt;] start_kernel+0x235/0x280
       [&lt;c055c066&gt;] i386_start_kernel+0x66/0x70

other info that might help us debug this:

2 locks held by swapper/0:
 #0:  (&amp;opl3-&gt;tlist){+.-...}, at: [&lt;c022abd0&gt;] run_timer_softirq+0xf0/0x1e0
 #1:  (&amp;opl3-&gt;sys_timer_lock){..-...}, at: [&lt;cca75169&gt;] snd_opl3_timer_func+0x19/0xc0 [snd_opl3_synth]

stack backtrace:
Pid: 0, comm: swapper Not tainted 2.6.32-rc3 #87
Call Trace:
 [&lt;c0245188&gt;] print_circular_bug+0xc8/0xd0
 [&lt;c02467e6&gt;] validate_chain+0x1036/0x1040
 [&lt;c0247f14&gt;] ? check_usage_forwards+0x54/0xd0
 [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
 [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
 [&lt;cca748fe&gt;] ? snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
 [&lt;cca748fe&gt;] ? snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;c044c307&gt;] ? _spin_lock_irqsave+0x47/0x60
 [&lt;cca751f0&gt;] snd_opl3_timer_func+0xa0/0xc0 [snd_opl3_synth]
 [&lt;c022ac46&gt;] run_timer_softirq+0x166/0x1e0
 [&lt;c022abd0&gt;] ? run_timer_softirq+0xf0/0x1e0
 [&lt;cca75150&gt;] ? snd_opl3_timer_func+0x0/0xc0 [snd_opl3_synth]
 [&lt;c02269e8&gt;] __do_softirq+0x78/0x110
 [&lt;c044c0fd&gt;] ? _spin_unlock+0x1d/0x20
 [&lt;c025915f&gt;] ? handle_level_irq+0xaf/0xe0
 [&lt;c0226ac6&gt;] do_softirq+0x46/0x50
 [&lt;c0226e26&gt;] irq_exit+0x36/0x40
 [&lt;c0204bd2&gt;] do_IRQ+0x42/0xb0
 [&lt;c024463c&gt;] ? trace_hardirqs_on_caller+0x12c/0x180
 [&lt;c020328e&gt;] common_interrupt+0x2e/0x40
 [&lt;c0208d88&gt;] ? default_idle+0x38/0x50
 [&lt;c021092f&gt;] apm_cpu_idle+0x10f/0x290
 [&lt;c0201b11&gt;] cpu_idle+0x21/0x40
 [&lt;c04443cd&gt;] rest_init+0x4d/0x60
 [&lt;c055c835&gt;] start_kernel+0x235/0x280
 [&lt;c055c210&gt;] ? unknown_bootoption+0x0/0x210
 [&lt;c055c066&gt;] i386_start_kernel+0x66/0x70

Signed-off-by: Krzysztof Helt &lt;krzysztof.h1@wp.pl&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix following circular locking in the opl3 driver.

=======================================================
[ INFO: possible circular locking dependency detected ]
2.6.32-rc3 #87
-------------------------------------------------------
swapper/0 is trying to acquire lock:
 (&amp;opl3-&gt;voice_lock){..-...}, at: [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]

but task is already holding lock:
 (&amp;opl3-&gt;sys_timer_lock){..-...}, at: [&lt;cca75169&gt;] snd_opl3_timer_func+0x19/0xc0 [snd_opl3_synth]

which lock already depends on the new lock.

the existing dependency chain (in reverse order) is:

-&gt; #1 (&amp;opl3-&gt;sys_timer_lock){..-...}:
       [&lt;c02461d5&gt;] validate_chain+0xa25/0x1040
       [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
       [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
       [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
       [&lt;cca75046&gt;] snd_opl3_note_on+0x686/0x790 [snd_opl3_synth]
       [&lt;cca68912&gt;] snd_midi_process_event+0x322/0x590 [snd_seq_midi_emul]
       [&lt;cca74245&gt;] snd_opl3_synth_event_input+0x15/0x20 [snd_opl3_synth]
       [&lt;cca4dcc0&gt;] snd_seq_deliver_single_event+0x100/0x200 [snd_seq]
       [&lt;cca4de07&gt;] snd_seq_deliver_event+0x47/0x1f0 [snd_seq]
       [&lt;cca4e50b&gt;] snd_seq_dispatch_event+0x3b/0x140 [snd_seq]
       [&lt;cca5008c&gt;] snd_seq_check_queue+0x10c/0x120 [snd_seq]
       [&lt;cca5037b&gt;] snd_seq_enqueue_event+0x6b/0xe0 [snd_seq]
       [&lt;cca4e0fd&gt;] snd_seq_client_enqueue_event+0xdd/0x100 [snd_seq]
       [&lt;cca4eb7a&gt;] snd_seq_write+0xea/0x190 [snd_seq]
       [&lt;c02827b6&gt;] vfs_write+0x96/0x160
       [&lt;c0282c9d&gt;] sys_write+0x3d/0x70
       [&lt;c0202c45&gt;] syscall_call+0x7/0xb

-&gt; #0 (&amp;opl3-&gt;voice_lock){..-...}:
       [&lt;c02467e6&gt;] validate_chain+0x1036/0x1040
       [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
       [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
       [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
       [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
       [&lt;cca751f0&gt;] snd_opl3_timer_func+0xa0/0xc0 [snd_opl3_synth]
       [&lt;c022ac46&gt;] run_timer_softirq+0x166/0x1e0
       [&lt;c02269e8&gt;] __do_softirq+0x78/0x110
       [&lt;c0226ac6&gt;] do_softirq+0x46/0x50
       [&lt;c0226e26&gt;] irq_exit+0x36/0x40
       [&lt;c0204bd2&gt;] do_IRQ+0x42/0xb0
       [&lt;c020328e&gt;] common_interrupt+0x2e/0x40
       [&lt;c021092f&gt;] apm_cpu_idle+0x10f/0x290
       [&lt;c0201b11&gt;] cpu_idle+0x21/0x40
       [&lt;c04443cd&gt;] rest_init+0x4d/0x60
       [&lt;c055c835&gt;] start_kernel+0x235/0x280
       [&lt;c055c066&gt;] i386_start_kernel+0x66/0x70

other info that might help us debug this:

2 locks held by swapper/0:
 #0:  (&amp;opl3-&gt;tlist){+.-...}, at: [&lt;c022abd0&gt;] run_timer_softirq+0xf0/0x1e0
 #1:  (&amp;opl3-&gt;sys_timer_lock){..-...}, at: [&lt;cca75169&gt;] snd_opl3_timer_func+0x19/0xc0 [snd_opl3_synth]

stack backtrace:
Pid: 0, comm: swapper Not tainted 2.6.32-rc3 #87
Call Trace:
 [&lt;c0245188&gt;] print_circular_bug+0xc8/0xd0
 [&lt;c02467e6&gt;] validate_chain+0x1036/0x1040
 [&lt;c0247f14&gt;] ? check_usage_forwards+0x54/0xd0
 [&lt;c0246aca&gt;] __lock_acquire+0x2da/0xab0
 [&lt;c024731a&gt;] lock_acquire+0x7a/0xa0
 [&lt;cca748fe&gt;] ? snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;c044c300&gt;] _spin_lock_irqsave+0x40/0x60
 [&lt;cca748fe&gt;] ? snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;cca748fe&gt;] snd_opl3_note_off+0x1e/0xe0 [snd_opl3_synth]
 [&lt;c044c307&gt;] ? _spin_lock_irqsave+0x47/0x60
 [&lt;cca751f0&gt;] snd_opl3_timer_func+0xa0/0xc0 [snd_opl3_synth]
 [&lt;c022ac46&gt;] run_timer_softirq+0x166/0x1e0
 [&lt;c022abd0&gt;] ? run_timer_softirq+0xf0/0x1e0
 [&lt;cca75150&gt;] ? snd_opl3_timer_func+0x0/0xc0 [snd_opl3_synth]
 [&lt;c02269e8&gt;] __do_softirq+0x78/0x110
 [&lt;c044c0fd&gt;] ? _spin_unlock+0x1d/0x20
 [&lt;c025915f&gt;] ? handle_level_irq+0xaf/0xe0
 [&lt;c0226ac6&gt;] do_softirq+0x46/0x50
 [&lt;c0226e26&gt;] irq_exit+0x36/0x40
 [&lt;c0204bd2&gt;] do_IRQ+0x42/0xb0
 [&lt;c024463c&gt;] ? trace_hardirqs_on_caller+0x12c/0x180
 [&lt;c020328e&gt;] common_interrupt+0x2e/0x40
 [&lt;c0208d88&gt;] ? default_idle+0x38/0x50
 [&lt;c021092f&gt;] apm_cpu_idle+0x10f/0x290
 [&lt;c0201b11&gt;] cpu_idle+0x21/0x40
 [&lt;c04443cd&gt;] rest_init+0x4d/0x60
 [&lt;c055c835&gt;] start_kernel+0x235/0x280
 [&lt;c055c210&gt;] ? unknown_bootoption+0x0/0x210
 [&lt;c055c066&gt;] i386_start_kernel+0x66/0x70

Signed-off-by: Krzysztof Helt &lt;krzysztof.h1@wp.pl&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ALSA: clean up the logic for building sequencer modules</title>
<updated>2009-05-29T09:49:42+00:00</updated>
<author>
<name>Michal Marek</name>
<email>mmarek@suse.cz</email>
</author>
<published>2009-05-26T15:07:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=0528c7494e67c30329d086df141d2dd691f01556'/>
<id>0528c7494e67c30329d086df141d2dd691f01556</id>
<content type='text'>
Instead of mangling the CONFIG_* variables in the makefiles over and
over, set a few helper variables in Kconfig.

Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of mangling the CONFIG_* variables in the makefiles over and
over, set a few helper variables in Kconfig.

Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ALSA: Add missing KERN_* prefix to printk in sound/drivers</title>
<updated>2009-02-05T15:00:56+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2009-02-05T14:51:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=45203832df2fa9e94ca0a249ddb20d2b077e58cc'/>
<id>45203832df2fa9e94ca0a249ddb20d2b077e58cc</id>
<content type='text'>
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>ALSA: Kill snd_assert() in other places</title>
<updated>2008-08-13T09:46:40+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2008-08-08T15:12:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=5e246b850df563224be26f1d409cf66fd6c968df'/>
<id>5e246b850df563224be26f1d409cf66fd6c968df</id>
<content type='text'>
Kill snd_assert() in other places, either removed or replaced with
if () with snd_BUG_ON().

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Kill snd_assert() in other places, either removed or replaced with
if () with snd_BUG_ON().

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ALSA] opl3 - Fix compilation without sequencer support</title>
<updated>2008-02-22T22:20:08+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2008-02-22T17:34:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=0ee46c9dadcbbd0daa12da30f226391896d90abb'/>
<id>0ee46c9dadcbbd0daa12da30f226391896d90abb</id>
<content type='text'>
Add proper ifdef's to the patch loading code moved from the old instr
layer so that opl3 driver can be compiled without the sequencer support.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add proper ifdef's to the patch loading code moved from the old instr
layer so that opl3 driver can be compiled without the sequencer support.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ALSA] opl3 - Fix build errors</title>
<updated>2008-01-31T16:29:14+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2007-10-30T11:43:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=045765253c610cb5acebb22ae94d759f586d9521'/>
<id>045765253c610cb5acebb22ae94d759f586d9521</id>
<content type='text'>
I applied a wrong patch for 'opl3 - simplify exclusive access lock'.
Fixed now.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I applied a wrong patch for 'opl3 - simplify exclusive access lock'.
Fixed now.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ALSA] opl3 - simplify exclusive access lock</title>
<updated>2008-01-31T16:29:13+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2007-10-30T10:59:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=05c1afe75fcebf456017ec186811cf1599f4360e'/>
<id>05c1afe75fcebf456017ec186811cf1599f4360e</id>
<content type='text'>
Use the exclusive access lock in hwdep instead of the own one.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the exclusive access lock in hwdep instead of the own one.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>[ALSA] opl3 - Use hwdep for patch loading</title>
<updated>2008-01-31T16:29:13+00:00</updated>
<author>
<name>Takashi Iwai</name>
<email>tiwai@suse.de</email>
</author>
<published>2007-10-30T10:49:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=224a033252bba46c5c8b5df625f5e781ca138f48'/>
<id>224a033252bba46c5c8b5df625f5e781ca138f48</id>
<content type='text'>
Use the hwdep device for loading OPL2/3 patch data instead of the
messy sequencer instrument layer.
Due to this change, the sbiload program should be updated, too.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the hwdep device for loading OPL2/3 patch data instead of the
messy sequencer instrument layer.
Due to this change, the sbiload program should be updated, too.

Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;
Signed-off-by: Jaroslav Kysela &lt;perex@perex.cz&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix misspellings of "system", "controller", "interrupt" and "necessary".</title>
<updated>2007-10-19T21:10:43+00:00</updated>
<author>
<name>Robert P. J. Day</name>
<email>rpjday@mindspring.com</email>
</author>
<published>2007-10-19T21:10:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.toradex.cn/cgit/linux-toradex.git/commit/?id=3a4fa0a25da81600ea0bcd75692ae8ca6050d165'/>
<id>3a4fa0a25da81600ea0bcd75692ae8ca6050d165</id>
<content type='text'>
Fix the various misspellings of "system", controller", "interrupt" and
"[un]necessary".

Signed-off-by: Robert P. J. Day &lt;rpjday@mindspring.com&gt;
Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the various misspellings of "system", controller", "interrupt" and
"[un]necessary".

Signed-off-by: Robert P. J. Day &lt;rpjday@mindspring.com&gt;
Signed-off-by: Adrian Bunk &lt;bunk@kernel.org&gt;
</pre>
</div>
</content>
</entry>
</feed>
