summaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/alc262_quirks.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ALSA: hda/realtek - Remove all ALC262-quirk codesTakashi Iwai2011-11-081-177/+0
| | | | | | | Now that model=ultra is supported well by the auto-parser, we can get rid of the whole alc262_quirks.c and its related codes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop ALC262 model=basic static configsTakashi Iwai2011-11-081-118/+0
| | | | | | | Now most of ALC262 stuff has been moved to the auto-parser, and no longer need for keeping model=basic. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop ALC262 model=hippo static quirksTakashi Iwai2011-11-081-104/+0
| | | | | | | Both entries for ALC262 model=hippo work well with the auto-parser and the default BIOS setup. No static configs are needed, so drop them. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop ALC262 model=hippo static quirksTakashi Iwai2011-11-081-63/+0
| | | | | | | This model (actually BenQ Joybook) works fine with the default auto-parser and the BIOS setup. Just drop the static quirks. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Convert ALC262 model=fujitsu to auto-parserTakashi Iwai2011-11-081-95/+0
| | | | | | | It works well with the auto-parse and the default BIOS setup when an additional COEF setup (for benq) is used. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Convert ALC262 benq and benq-t31 to fixup-listsTakashi Iwai2011-11-081-50/+0
| | | | | | | The conversion from ALC262 model=benq and model=benq-t31 static configs to auto-parser requires the manual COEF setups for corresponding models. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Convert ALC262 lenovo-3000 quirks to fixup-listTakashi Iwai2011-11-081-63/+0
| | | | | | | | The static quirks for ALC262 Lenovo 3000 can be covered by the auto- parser with a fixup of the mic-pin to VREF50 and the additional COEF verb. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop ALC262 model=nec quirkTakashi Iwai2011-11-081-48/+0
| | | | | | | This laptop works also fine with the auto-parser and the BIOS setup. A good boy. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Drop ALC262 model=toshiba-s06Takashi Iwai2011-11-081-52/+0
| | | | | | | This laptop works fine with the current auto-parser and the BIOS setup, so let's drop the static configuration. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Convert ALC262 model=toshiba-rx1 to a fixup-listTakashi Iwai2011-11-081-46/+0
| | | | | | | | Use the auto-parser for ALC262 model=toshiba-rx1 with the fixed pin- configs. The BIOS table seems incorrect, so many pin entries are overwritten to match with the former quirk. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda/realtek - Convert alc262 model=tyan to a fixup-listTakashi Iwai2011-11-081-59/+0
| | | | | | | Use the auto-parser for ALC262 model=tyan with a pin-config fix-up and drop the static configuration. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: HDA: Refactor Realtek's automuteDavid Henningsson2011-09-201-19/+9
| | | | | | | Increase readability and understandability in the automute code. Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Remove ALC260 HP model quirksTakashi Iwai2011-08-151-21/+28
| | | | | | | | ALC260 HP models work with the BIOS auto-parser. Let's cut them off. Also move alc260_hp_master_*() to alc262_quirks.c as these are still referred from there. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Remove ALC262 HP and sony-assamd quirksTakashi Iwai2011-08-151-475/+0
| | | | | | | HP and sony-assamd models work with the BIOS auto-parser nowadays, so let's reduce the unnecessary code. Signed-off-by: Takashi Iwai <tiwai@suse.de>
* ALSA: hda - Split quirk codes from patch_realtek.cTakashi Iwai2011-07-071-0/+1353
Put the all static quirk codes out of patch_realtek.c, split into the file for each codec model. For controlling the build of quirk codes, a new Kconfig, CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS is introduced. By setting this off, all quirk codes won't be built, thus you can save lots of memory. The codes in patch_realtek.c are also shuffled and more comments are given, but the contents aren't changed. This is just a refactoring. Signed-off-by: Takashi Iwai <tiwai@suse.de>