An error occurred fetching the project authors.
- 03 Nov, 2008 1 commit
-
-
Takashi Iwai authored
Reported in Novell bnc#440862: https://bugzilla.novell.com/show_bug.cgi?id=440862Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 23 Oct, 2008 1 commit
-
-
Vedran Miletic authored
I fixed all of coding style errors and some warnings, now it is down to: checkpatch.pl-0.24 --no-tree --file --strict --terse emu10k1_main.c total: 0 errors, 62 warnings, 7 checks, 2075 lines checked Signed-off-by:
Vedran Miletic <rivanvx@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 21 Oct, 2008 2 commits
-
-
Vedran Miletic authored
Commit 18c71092 had #endif leftoff from compilation. This patch fixes it. Also, I replaced a misplaced comment by a useful one, that explains why are here #ifdef and #endif added in compilation. Signed-off-by:
Vedran Miletic <rivanvx@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
Vedran Miletic authored
* added missing SBxxxx, CTxxxx, PCxxx and MAEMxxxx where they were missing, and fixed some of them which were wrong (according to kx.inf, which is pretty accurate compared to anything out there) * fixed device names to make them more consistent across various cards * fixed order of devices where appropriate Signed-off-by:
Vedran Miletic <rivanvx@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 06 Jun, 2008 1 commit
-
-
Jaroslav Franek authored
When the Linux kernel is compiled with CONFIG_DEBUG_SHIRQ=y, the Soundblaster Audigy2 ZS Notebook PCMCIA card causes the system hang during boot (udev stage) or when the card is hot-plug. The CONFIG_DEBUG_SHIRQ flag is by default 'y' with all Fedora kernels since 2.6.23. The problem was reported as https://bugzilla.redhat.com/show_bug.cgi?id=326411 The issue was hunted down to the snd_emu10k1_create() routine: /* pseudo-code */ snd_emu10k1_create(...) { ... request_irq(... IRQF_SHARED ...) { register the irq handler #ifdef CONFIG_DEBUG_SHIRQ call the irq handler: snd_emu10k1_interrupt() { poll I/O port // <---- !! system hangs ... } #endif } ... snd_emu10k1_cardbus_init(...) { initialize I/O ports } ... } The early access to I/O port in the interrupt handler causes the freeze. Obviously it is necessary to init the I/O ports before accessing them. This patch moves the registration of the irq handler after the initialization of the I/O ports. Signed-off-by:
Jaroslav Franek <jarin.franek@post.cz> Acked-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 02 Jun, 2008 1 commit
-
-
Takashi Iwai authored
On Audigy2 Platinum, the Analog/Digital mixer switch is inverted. https://bugzilla.novell.com/show_bug.cgi?id=396204 The patch adds a simple workaround. There might be another device requiring a similar fix, too (or fix for audigy2 generically), but right now I fix only the known broken one. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 24 Apr, 2008 1 commit
-
-
Takashi Iwai authored
The irq handler of PCI drivers must be released before releasing other resources since the handler for a shared irq can be still called and may access the freed resource again. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
- 31 Jan, 2008 7 commits
-
-
Veli-Matti Valtonen authored
This is based on pseudo-random playing around with the capabilities. With ca0102 this card gives no output atall, ca0108 appears to work fine, so it rather looks similar to the EMU1010b/EMU1010 changes. Some other people seem to have succeeded in using this aswell: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=3496 From: Veli-Matti Valtonen <maligor@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
Takashi Iwai authored
Don't create emu1010 kthread again at resume if it's already created. Also make the thread function static. Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
Takashi Iwai authored
Use enum instead of digits for emu_model types. Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
Ctirad Fertr authored
This patch improves E-Mu 1616(M) cardbus support. It adds definitions of the new Microdock and 1010 cardbus registers (thanks again for descriptions James) and improves mixer for this card. Now you can use S/PDIF and ADAT on Mirodock and also use headpohone output on host cardbus card as another independent output. Signed-off-by:
Ctirad Fertr <c.fertr@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
Takashi Iwai authored
This header file exists only for some hacks to adapt alsa-driver tree. It's useless for building in the kernel. Let's move a few lines in it to sound/core.h and remove it. With this patch, sound/driver.h isn't removed but has just a single compile warning to include it. This should be really killed in future. Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
- 16 Oct, 2007 6 commits
-
-
Jaroslav Kysela authored
Signed-off-by:
Jaroslav Kysela <perex@perex.cz>
-
Jesper Juhl authored
vmalloc() returns void *. no need to cast. Signed-off-by:
Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Patch submitted by Ctirad Fertr <c.fertr@volny.cz> Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Details: Fixes http://bugzilla.kernel.org/show_bug.cgi?id=8176Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 20 Jul, 2007 3 commits
-
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
Pavel Hofman authored
* adding 8 more 32-bit capture channels (total of 16) for emu1010 cards * adding some code comments and card details description Signed-off-by:
Pavel Hofman <dustin@seznam.cz> Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 11 Jul, 2007 1 commit
-
-
Auke Kok authored
Instead of all drivers reading pci config space to get the revision ID, they can now use the pci_device->revision member. This exposes some issues where drivers where reading a word or a dword for the revision number, and adding useless error-handling around the read. Some drivers even just read it for no purpose of all. In devices where the revision ID is being copied over and used in what appears to be the equivalent of hotpath, I have left the copy code and the cached copy as not to influence the driver's performance. Compile tested with make all{yes,mod}config on x86_64 and i386. Signed-off-by:
Auke Kok <auke-jan.h.kok@intel.com> Acked-by:
Dave Jones <davej@redhat.com> Signed-off-by:
Greg Kroah-Hartman <gregkh@suse.de>
-
- 11 May, 2007 2 commits
-
-
Clemens Ladisch authored
Add MODULE_FIRMWARE() entries, where appropriate. Signed-off-by:
Clemens Ladisch <clemens@ladisch.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
E-Mu 1010 is not currently supported yet. Needs development work. Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 09 Feb, 2007 5 commits
-
-
James Courtier-Dutton authored
Implement functionallity in order to fixe ALSA bug#2058. Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
Takashi Iwai authored
Fixed a compile warning regarding print format for size_t. Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 20 Dec, 2006 1 commit
-
-
Takashi Iwai authored
Fix IRQ flags for PCI devices. The shared IRQs for PCI devices shouldn't be allocated with IRQF_DISABLED. Also, when MSI is enabled, IRQF_SHARED shouldn't be used. The patch removes unnecessary cast in request_irq and free_irq, too. Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 28 Nov, 2006 1 commit
-
-
James Courtier-Dutton authored
Fixes ALSA bug#324 Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 06 Oct, 2006 1 commit
-
-
Arnaud Patard authored
The emu10k1 driver saves the A_IOCFG and HCFG register on suspend and restores it on resumes. Unfortunately, this doesn't work as the arguments to outl() are reversed. Signed-off-by:
Arnaud Patard <arnaud.patard@rtp-net.org> Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 23 Sep, 2006 1 commit
-
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 03 Aug, 2006 1 commit
-
-
James Courtier-Dutton authored
Fixes ALSA bug#1365. Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 12 Jul, 2006 1 commit
-
-
Takashi Iwai authored
Fixed 'section mismatch' errors in ALSA PCI drivers: - removed invalid __devinitdata from pci id tables - fix/remove __devinit of functions called in suspend/resume Signed-off-by:
Takashi Iwai <tiwai@suse.de> Signed-off-by:
Jaroslav Kysela <perex@suse.cz>
-
- 02 Jul, 2006 1 commit
-
-
Thomas Gleixner authored
Signed-off-by:
Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Cc: "David S. Miller" <davem@davemloft.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Jaroslav Kysela <perex@suse.cz> Cc: Takashi Iwai <tiwai@suse.de> Signed-off-by:
Andrew Morton <akpm@osdl.org> Signed-off-by:
Linus Torvalds <torvalds@osdl.org>
-
- 22 Jun, 2006 2 commits
-
-
Takashi Iwai authored
Move EXPORT_SYMBOL() to adjacent to each exported function/variable. Signed-off-by:
Takashi Iwai <tiwai@suse.de>
-
James Courtier-Dutton authored
Signed-off-by:
James Courtier-Dutton <James@superbug.co.uk>
-