Commit 23ce51d9 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

V4L/DVB (10405): saa7134-core: loading saa7134-alsa is now the default

Most boards nowadays supports saa7134-alsa. Even some of they doesn't have any
option to wire an audio cable. So, lets load saa7134-alsa by default, if the
board is not based on saa7130 and if saa7134-alsa is compiled.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 74d200f1
...@@ -54,9 +54,9 @@ static unsigned int gpio_tracking; ...@@ -54,9 +54,9 @@ static unsigned int gpio_tracking;
module_param(gpio_tracking, int, 0644); module_param(gpio_tracking, int, 0644);
MODULE_PARM_DESC(gpio_tracking,"enable debug messages [gpio]"); MODULE_PARM_DESC(gpio_tracking,"enable debug messages [gpio]");
static unsigned int alsa; static unsigned int alsa = 1;
module_param(alsa, int, 0644); module_param(alsa, int, 0644);
MODULE_PARM_DESC(alsa,"enable ALSA DMA sound [dmasound]"); MODULE_PARM_DESC(alsa,"enable/disable ALSA DMA sound [dmasound]");
static unsigned int latency = UNSET; static unsigned int latency = UNSET;
module_param(latency, int, 0444); module_param(latency, int, 0444);
...@@ -152,8 +152,10 @@ static void request_module_async(struct work_struct *work){ ...@@ -152,8 +152,10 @@ static void request_module_async(struct work_struct *work){
request_module("saa7134-empress"); request_module("saa7134-empress");
if (card_is_dvb(dev)) if (card_is_dvb(dev))
request_module("saa7134-dvb"); request_module("saa7134-dvb");
if (alsa) if (alsa) {
request_module("saa7134-alsa"); if (dev->pci->device != PCI_DEVICE_ID_PHILIPS_SAA7130)
request_module("saa7134-alsa");
}
} }
static void request_submodules(struct saa7134_dev *dev) static void request_submodules(struct saa7134_dev *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment