diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 10:00:22 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2012-01-13 10:00:22 -0500 |
commit | 4de3a8e101150feaefa1139611a50ff37467f33e (patch) | |
tree | daada742542518b02d7db7c5d32e715eaa5f166d /sound/pci/oxygen | |
parent | 294064f58953f9964e5945424b09c51800330a83 (diff) | |
parent | 099469502f62fbe0d7e4f0b83a2f22538367f734 (diff) |
Merge branch 'master' into fixes
Diffstat (limited to 'sound/pci/oxygen')
-rw-r--r-- | sound/pci/oxygen/oxygen.c | 2 | ||||
-rw-r--r-- | sound/pci/oxygen/virtuoso.c | 2 | ||||
-rw-r--r-- | sound/pci/oxygen/xonar_cs43xx.c | 1 | ||||
-rw-r--r-- | sound/pci/oxygen/xonar_dg.c | 3 | ||||
-rw-r--r-- | sound/pci/oxygen/xonar_wm87x6.c | 6 |
5 files changed, 9 insertions, 5 deletions
diff --git a/sound/pci/oxygen/oxygen.c b/sound/pci/oxygen/oxygen.c index 5f3a13d4369..eab663eef11 100644 --- a/sound/pci/oxygen/oxygen.c +++ b/sound/pci/oxygen/oxygen.c | |||
@@ -74,7 +74,7 @@ MODULE_SUPPORTED_DEVICE("{{C-Media,CMI8786}" | |||
74 | 74 | ||
75 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; | 75 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
76 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; | 76 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
77 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; | 77 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
78 | 78 | ||
79 | module_param_array(index, int, NULL, 0444); | 79 | module_param_array(index, int, NULL, 0444); |
80 | MODULE_PARM_DESC(index, "card index"); | 80 | MODULE_PARM_DESC(index, "card index"); |
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c index 4149a0cb8b7..3fdee495017 100644 --- a/sound/pci/oxygen/virtuoso.c +++ b/sound/pci/oxygen/virtuoso.c | |||
@@ -32,7 +32,7 @@ MODULE_SUPPORTED_DEVICE("{{Asus,AV66},{Asus,AV100},{Asus,AV200}}"); | |||
32 | 32 | ||
33 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; | 33 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
34 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; | 34 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
35 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; | 35 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
36 | 36 | ||
37 | module_param_array(index, int, NULL, 0444); | 37 | module_param_array(index, int, NULL, 0444); |
38 | MODULE_PARM_DESC(index, "card index"); | 38 | MODULE_PARM_DESC(index, "card index"); |
diff --git a/sound/pci/oxygen/xonar_cs43xx.c b/sound/pci/oxygen/xonar_cs43xx.c index 252719101c4..c8febf4b9bd 100644 --- a/sound/pci/oxygen/xonar_cs43xx.c +++ b/sound/pci/oxygen/xonar_cs43xx.c | |||
@@ -418,6 +418,7 @@ static const struct oxygen_model model_xonar_d1 = { | |||
418 | .device_config = PLAYBACK_0_TO_I2S | | 418 | .device_config = PLAYBACK_0_TO_I2S | |
419 | PLAYBACK_1_TO_SPDIF | | 419 | PLAYBACK_1_TO_SPDIF | |
420 | CAPTURE_0_FROM_I2S_2 | | 420 | CAPTURE_0_FROM_I2S_2 | |
421 | CAPTURE_1_FROM_SPDIF | | ||
421 | AC97_FMIC_SWITCH, | 422 | AC97_FMIC_SWITCH, |
422 | .dac_channels_pcm = 8, | 423 | .dac_channels_pcm = 8, |
423 | .dac_channels_mixer = 8, | 424 | .dac_channels_mixer = 8, |
diff --git a/sound/pci/oxygen/xonar_dg.c b/sound/pci/oxygen/xonar_dg.c index bc6eb58be38..793bdf03d7e 100644 --- a/sound/pci/oxygen/xonar_dg.c +++ b/sound/pci/oxygen/xonar_dg.c | |||
@@ -597,7 +597,8 @@ struct oxygen_model model_xonar_dg = { | |||
597 | .model_data_size = sizeof(struct dg), | 597 | .model_data_size = sizeof(struct dg), |
598 | .device_config = PLAYBACK_0_TO_I2S | | 598 | .device_config = PLAYBACK_0_TO_I2S | |
599 | PLAYBACK_1_TO_SPDIF | | 599 | PLAYBACK_1_TO_SPDIF | |
600 | CAPTURE_0_FROM_I2S_2, | 600 | CAPTURE_0_FROM_I2S_2 | |
601 | CAPTURE_1_FROM_SPDIF, | ||
601 | .dac_channels_pcm = 6, | 602 | .dac_channels_pcm = 6, |
602 | .dac_channels_mixer = 0, | 603 | .dac_channels_mixer = 0, |
603 | .function_flags = OXYGEN_FUNCTION_SPI, | 604 | .function_flags = OXYGEN_FUNCTION_SPI, |
diff --git a/sound/pci/oxygen/xonar_wm87x6.c b/sound/pci/oxygen/xonar_wm87x6.c index 42d1ab13621..478303e6c2b 100644 --- a/sound/pci/oxygen/xonar_wm87x6.c +++ b/sound/pci/oxygen/xonar_wm87x6.c | |||
@@ -1274,7 +1274,8 @@ static const struct oxygen_model model_xonar_ds = { | |||
1274 | .model_data_size = sizeof(struct xonar_wm87x6), | 1274 | .model_data_size = sizeof(struct xonar_wm87x6), |
1275 | .device_config = PLAYBACK_0_TO_I2S | | 1275 | .device_config = PLAYBACK_0_TO_I2S | |
1276 | PLAYBACK_1_TO_SPDIF | | 1276 | PLAYBACK_1_TO_SPDIF | |
1277 | CAPTURE_0_FROM_I2S_1, | 1277 | CAPTURE_0_FROM_I2S_1 | |
1278 | CAPTURE_1_FROM_SPDIF, | ||
1278 | .dac_channels_pcm = 8, | 1279 | .dac_channels_pcm = 8, |
1279 | .dac_channels_mixer = 8, | 1280 | .dac_channels_mixer = 8, |
1280 | .dac_volume_min = 255 - 2*60, | 1281 | .dac_volume_min = 255 - 2*60, |
@@ -1306,7 +1307,8 @@ static const struct oxygen_model model_xonar_hdav_slim = { | |||
1306 | .model_data_size = sizeof(struct xonar_wm87x6), | 1307 | .model_data_size = sizeof(struct xonar_wm87x6), |
1307 | .device_config = PLAYBACK_0_TO_I2S | | 1308 | .device_config = PLAYBACK_0_TO_I2S | |
1308 | PLAYBACK_1_TO_SPDIF | | 1309 | PLAYBACK_1_TO_SPDIF | |
1309 | CAPTURE_0_FROM_I2S_1, | 1310 | CAPTURE_0_FROM_I2S_1 | |
1311 | CAPTURE_1_FROM_SPDIF, | ||
1310 | .dac_channels_pcm = 8, | 1312 | .dac_channels_pcm = 8, |
1311 | .dac_channels_mixer = 2, | 1313 | .dac_channels_mixer = 2, |
1312 | .dac_volume_min = 255 - 2*60, | 1314 | .dac_volume_min = 255 - 2*60, |