mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
Merge branch 'topic/section-fix' into for-linus
* topic/section-fix: ALSA: Add missing __devexit_p() markers ALSA: powermac - Replace the rest of __init* ALSA: sound/ppc: update annotations of serveral functions
This commit is contained in:
commit
1282c824cc
@ -193,7 +193,7 @@ static int __devexit snd_es1688_remove(struct device *dev, unsigned int n)
|
||||
static struct isa_driver snd_es1688_driver = {
|
||||
.match = snd_es1688_match,
|
||||
.probe = snd_es1688_probe,
|
||||
.remove = snd_es1688_remove,
|
||||
.remove = __devexit_p(snd_es1688_remove),
|
||||
#if 0 /* FIXME */
|
||||
.suspend = snd_es1688_suspend,
|
||||
.resume = snd_es1688_resume,
|
||||
|
@ -348,7 +348,7 @@ static int __devexit snd_gusextreme_remove(struct device *dev, unsigned int n)
|
||||
static struct isa_driver snd_gusextreme_driver = {
|
||||
.match = snd_gusextreme_match,
|
||||
.probe = snd_gusextreme_probe,
|
||||
.remove = snd_gusextreme_remove,
|
||||
.remove = __devexit_p(snd_gusextreme_remove),
|
||||
#if 0 /* FIXME */
|
||||
.suspend = snd_gusextreme_suspend,
|
||||
.resume = snd_gusextreme_resume,
|
||||
|
@ -1020,7 +1020,7 @@ static struct parisc_driver snd_harmony_driver = {
|
||||
.name = "harmony",
|
||||
.id_table = snd_harmony_devtable,
|
||||
.probe = snd_harmony_probe,
|
||||
.remove = snd_harmony_remove,
|
||||
.remove = __devexit_p(snd_harmony_remove),
|
||||
};
|
||||
|
||||
static int __init
|
||||
|
@ -477,7 +477,7 @@ static int snd_pmac_awacs_put_master_amp(struct snd_kcontrol *kcontrol,
|
||||
#define AMP_CH_SPK 0
|
||||
#define AMP_CH_HD 1
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __devinitdata = {
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "PC Speaker Playback Volume",
|
||||
.info = snd_pmac_awacs_info_volume_amp,
|
||||
@ -514,7 +514,7 @@ static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Headphone Playback Switch",
|
||||
.info = snd_pmac_boolean_stereo_info,
|
||||
@ -523,7 +523,7 @@ static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __initdata = {
|
||||
.private_value = AMP_CH_HD,
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "PC Speaker Playback Switch",
|
||||
.info = snd_pmac_boolean_stereo_info,
|
||||
@ -595,46 +595,46 @@ static int snd_pmac_screamer_mic_boost_put(struct snd_kcontrol *kcontrol,
|
||||
/*
|
||||
* lists of mixer elements
|
||||
*/
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers[] __devinitdata = {
|
||||
AWACS_SWITCH("Master Capture Switch", 1, SHIFT_LOOPTHRU, 0),
|
||||
AWACS_VOLUME("Master Capture Volume", 0, 4, 0),
|
||||
/* AWACS_SWITCH("Unknown Playback Switch", 6, SHIFT_PAROUT0, 0), */
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_beige[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_beige[] __devinitdata = {
|
||||
AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
|
||||
AWACS_VOLUME("Play-through Playback Volume", 5, 6, 1),
|
||||
AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_LINE, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_lo[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_lo[] __devinitdata = {
|
||||
AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_imac[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_imac[] __devinitdata = {
|
||||
AWACS_VOLUME("Play-through Playback Volume", 5, 6, 1),
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_g4agp[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers_g4agp[] __devinitdata = {
|
||||
AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
|
||||
AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
|
||||
AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac7500[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac7500[] __devinitdata = {
|
||||
AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
|
||||
AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac5500[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac5500[] __devinitdata = {
|
||||
AWACS_VOLUME("Headphone Playback Volume", 2, 6, 1),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] __devinitdata = {
|
||||
AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
|
||||
};
|
||||
@ -642,34 +642,34 @@ static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] __initdata = {
|
||||
/* FIXME: is this correct order?
|
||||
* screamer (powerbook G3 pismo) seems to have different bits...
|
||||
*/
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers2[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers2[] __devinitdata = {
|
||||
AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_LINE, 0),
|
||||
AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_MIC, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers2[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mixers2[] __devinitdata = {
|
||||
AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
|
||||
AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_LINE, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers2_pmac5500[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mixers2_pmac5500[] __devinitdata = {
|
||||
AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw __devinitdata =
|
||||
AWACS_SWITCH("Master Playback Switch", 1, SHIFT_HDMUTE, 1);
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw_imac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw_imac __devinitdata =
|
||||
AWACS_SWITCH("Line out Playback Switch", 1, SHIFT_HDMUTE, 1);
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw_pmac5500 __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_master_sw_pmac5500 __devinitdata =
|
||||
AWACS_SWITCH("Headphone Playback Switch", 1, SHIFT_HDMUTE, 1);
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mic_boost[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mic_boost[] __devinitdata = {
|
||||
AWACS_SWITCH("Mic Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] __devinitdata = {
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Mic Boost Capture Volume",
|
||||
.info = snd_pmac_screamer_mic_boost_info,
|
||||
@ -678,34 +678,34 @@ static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mic_boost_pmac7500[] __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_mic_boost_pmac7500[] __devinitdata =
|
||||
{
|
||||
AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_beige[] __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_beige[] __devinitdata =
|
||||
{
|
||||
AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
|
||||
AWACS_SWITCH("CD Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] __devinitdata =
|
||||
{
|
||||
AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
|
||||
AWACS_SWITCH("Mic Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __devinitdata = {
|
||||
AWACS_VOLUME("PC Speaker Playback Volume", 4, 6, 1),
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __devinitdata =
|
||||
AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1);
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 __devinitdata =
|
||||
AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 1);
|
||||
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 __devinitdata =
|
||||
AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 0);
|
||||
|
||||
|
||||
@ -872,7 +872,7 @@ static void snd_pmac_awacs_update_automute(struct snd_pmac *chip, int do_notify)
|
||||
/*
|
||||
* initialize chip
|
||||
*/
|
||||
int __init
|
||||
int __devinit
|
||||
snd_pmac_awacs_init(struct snd_pmac *chip)
|
||||
{
|
||||
int pm7500 = IS_PM7500;
|
||||
|
@ -215,7 +215,7 @@ static struct snd_kcontrol_new snd_pmac_beep_mixer = {
|
||||
};
|
||||
|
||||
/* Initialize beep stuff */
|
||||
int __init snd_pmac_attach_beep(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_attach_beep(struct snd_pmac *chip)
|
||||
{
|
||||
struct pmac_beep *beep;
|
||||
struct input_dev *input_dev;
|
||||
|
@ -468,7 +468,7 @@ static int snd_pmac_burgundy_put_switch_b(struct snd_kcontrol *kcontrol,
|
||||
/*
|
||||
* Burgundy mixers
|
||||
*/
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers[] __devinitdata = {
|
||||
BURGUNDY_VOLUME_W("Master Playback Volume", 0,
|
||||
MASK_ADDR_BURGUNDY_MASTER_VOLUME, 8),
|
||||
BURGUNDY_VOLUME_W("CD Capture Volume", 0,
|
||||
@ -496,7 +496,7 @@ static struct snd_kcontrol_new snd_pmac_burgundy_mixers[] __initdata = {
|
||||
*/ BURGUNDY_SWITCH_B("PCM Capture Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_HOSTIFEH, 0x01, 0, 0)
|
||||
};
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers_imac[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers_imac[] __devinitdata = {
|
||||
BURGUNDY_VOLUME_W("Line in Capture Volume", 0,
|
||||
MASK_ADDR_BURGUNDY_VOLLINE, 16),
|
||||
BURGUNDY_VOLUME_W("Mic Capture Volume", 0,
|
||||
@ -522,7 +522,7 @@ static struct snd_kcontrol_new snd_pmac_burgundy_mixers_imac[] __initdata = {
|
||||
BURGUNDY_SWITCH_B("Mic Boost Capture Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_INPBOOST, 0x40, 0x80, 1)
|
||||
};
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers_pmac[] __initdata = {
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_mixers_pmac[] __devinitdata = {
|
||||
BURGUNDY_VOLUME_W("Line in Capture Volume", 0,
|
||||
MASK_ADDR_BURGUNDY_VOLMIC, 16),
|
||||
BURGUNDY_VOLUME_B("Line in Gain Capture Volume", 0,
|
||||
@ -538,33 +538,33 @@ static struct snd_kcontrol_new snd_pmac_burgundy_mixers_pmac[] __initdata = {
|
||||
/* BURGUNDY_SWITCH_B("Line in Boost Capture Switch", 0,
|
||||
* MASK_ADDR_BURGUNDY_INPBOOST, 0x40, 0x80, 1) */
|
||||
};
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_master_sw_imac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_master_sw_imac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("Master Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_OUTPUT_LEFT | BURGUNDY_LINEOUT_LEFT | BURGUNDY_HP_LEFT,
|
||||
BURGUNDY_OUTPUT_RIGHT | BURGUNDY_LINEOUT_RIGHT | BURGUNDY_HP_RIGHT, 1);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_master_sw_pmac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_master_sw_pmac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("Master Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_OUTPUT_INTERN
|
||||
| BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_imac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_imac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("PC Speaker Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_pmac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_pmac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("PC Speaker Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_OUTPUT_INTERN, 0, 0);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_imac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_imac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("Line out Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_LINEOUT_LEFT, BURGUNDY_LINEOUT_RIGHT, 1);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_pmac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_pmac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("Line out Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1);
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_hp_sw_imac __initdata =
|
||||
static struct snd_kcontrol_new snd_pmac_burgundy_hp_sw_imac __devinitdata =
|
||||
BURGUNDY_SWITCH_B("Headphone Playback Switch", 0,
|
||||
MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
|
||||
BURGUNDY_HP_LEFT, BURGUNDY_HP_RIGHT, 1);
|
||||
@ -618,7 +618,7 @@ static void snd_pmac_burgundy_update_automute(struct snd_pmac *chip, int do_noti
|
||||
/*
|
||||
* initialize burgundy
|
||||
*/
|
||||
int __init snd_pmac_burgundy_init(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_burgundy_init(struct snd_pmac *chip)
|
||||
{
|
||||
int imac = machine_is_compatible("iMac");
|
||||
int i, err;
|
||||
|
@ -244,7 +244,7 @@ static void daca_cleanup(struct snd_pmac *chip)
|
||||
}
|
||||
|
||||
/* exported */
|
||||
int __init snd_pmac_daca_init(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_daca_init(struct snd_pmac *chip)
|
||||
{
|
||||
int i, err;
|
||||
struct pmac_daca *mix;
|
||||
|
@ -105,7 +105,7 @@ void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c)
|
||||
}
|
||||
}
|
||||
|
||||
int __init snd_pmac_tumbler_post_init(void)
|
||||
int __devinit snd_pmac_tumbler_post_init(void)
|
||||
{
|
||||
int err;
|
||||
|
||||
@ -120,7 +120,7 @@ int __init snd_pmac_tumbler_post_init(void)
|
||||
}
|
||||
|
||||
/* exported */
|
||||
int __init snd_pmac_keywest_init(struct pmac_keywest *i2c)
|
||||
int __devinit snd_pmac_keywest_init(struct pmac_keywest *i2c)
|
||||
{
|
||||
int err;
|
||||
|
||||
|
@ -702,7 +702,7 @@ static struct snd_pcm_ops snd_pmac_capture_ops = {
|
||||
.pointer = snd_pmac_capture_pointer,
|
||||
};
|
||||
|
||||
int __init snd_pmac_pcm_new(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_pcm_new(struct snd_pmac *chip)
|
||||
{
|
||||
struct snd_pcm *pcm;
|
||||
int err;
|
||||
@ -908,7 +908,7 @@ static int snd_pmac_dev_free(struct snd_device *device)
|
||||
* check the machine support byteswap (little-endian)
|
||||
*/
|
||||
|
||||
static void __init detect_byte_swap(struct snd_pmac *chip)
|
||||
static void __devinit detect_byte_swap(struct snd_pmac *chip)
|
||||
{
|
||||
struct device_node *mio;
|
||||
|
||||
@ -934,7 +934,7 @@ static void __init detect_byte_swap(struct snd_pmac *chip)
|
||||
/*
|
||||
* detect a sound chip
|
||||
*/
|
||||
static int __init snd_pmac_detect(struct snd_pmac *chip)
|
||||
static int __devinit snd_pmac_detect(struct snd_pmac *chip)
|
||||
{
|
||||
struct device_node *sound;
|
||||
struct device_node *dn;
|
||||
@ -1143,7 +1143,7 @@ static int pmac_hp_detect_get(struct snd_kcontrol *kcontrol,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct snd_kcontrol_new auto_mute_controls[] __initdata = {
|
||||
static struct snd_kcontrol_new auto_mute_controls[] __devinitdata = {
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Auto Mute Switch",
|
||||
.info = snd_pmac_boolean_mono_info,
|
||||
@ -1158,7 +1158,7 @@ static struct snd_kcontrol_new auto_mute_controls[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
int __init snd_pmac_add_automute(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_add_automute(struct snd_pmac *chip)
|
||||
{
|
||||
int err;
|
||||
chip->auto_mute = 1;
|
||||
@ -1175,7 +1175,7 @@ int __init snd_pmac_add_automute(struct snd_pmac *chip)
|
||||
/*
|
||||
* create and detect a pmac chip record
|
||||
*/
|
||||
int __init snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
|
||||
int __devinit snd_pmac_new(struct snd_card *card, struct snd_pmac **chip_return)
|
||||
{
|
||||
struct snd_pmac *chip;
|
||||
struct device_node *np;
|
||||
|
@ -838,7 +838,7 @@ static int snapper_put_capture_source(struct snd_kcontrol *kcontrol,
|
||||
|
||||
/*
|
||||
*/
|
||||
static struct snd_kcontrol_new tumbler_mixers[] __initdata = {
|
||||
static struct snd_kcontrol_new tumbler_mixers[] __devinitdata = {
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Master Playback Volume",
|
||||
.info = tumbler_info_master_volume,
|
||||
@ -862,7 +862,7 @@ static struct snd_kcontrol_new tumbler_mixers[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new snapper_mixers[] __initdata = {
|
||||
static struct snd_kcontrol_new snapper_mixers[] __devinitdata = {
|
||||
{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Master Playback Volume",
|
||||
.info = tumbler_info_master_volume,
|
||||
@ -895,7 +895,7 @@ static struct snd_kcontrol_new snapper_mixers[] __initdata = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct snd_kcontrol_new tumbler_hp_sw __initdata = {
|
||||
static struct snd_kcontrol_new tumbler_hp_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Headphone Playback Switch",
|
||||
.info = snd_pmac_boolean_mono_info,
|
||||
@ -903,7 +903,7 @@ static struct snd_kcontrol_new tumbler_hp_sw __initdata = {
|
||||
.put = tumbler_put_mute_switch,
|
||||
.private_value = TUMBLER_MUTE_HP,
|
||||
};
|
||||
static struct snd_kcontrol_new tumbler_speaker_sw __initdata = {
|
||||
static struct snd_kcontrol_new tumbler_speaker_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "PC Speaker Playback Switch",
|
||||
.info = snd_pmac_boolean_mono_info,
|
||||
@ -911,7 +911,7 @@ static struct snd_kcontrol_new tumbler_speaker_sw __initdata = {
|
||||
.put = tumbler_put_mute_switch,
|
||||
.private_value = TUMBLER_MUTE_AMP,
|
||||
};
|
||||
static struct snd_kcontrol_new tumbler_lineout_sw __initdata = {
|
||||
static struct snd_kcontrol_new tumbler_lineout_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Line Out Playback Switch",
|
||||
.info = snd_pmac_boolean_mono_info,
|
||||
@ -919,7 +919,7 @@ static struct snd_kcontrol_new tumbler_lineout_sw __initdata = {
|
||||
.put = tumbler_put_mute_switch,
|
||||
.private_value = TUMBLER_MUTE_LINE,
|
||||
};
|
||||
static struct snd_kcontrol_new tumbler_drc_sw __initdata = {
|
||||
static struct snd_kcontrol_new tumbler_drc_sw __devinitdata = {
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "DRC Switch",
|
||||
.info = snd_pmac_boolean_mono_info,
|
||||
@ -1269,7 +1269,7 @@ static void tumbler_resume(struct snd_pmac *chip)
|
||||
#endif
|
||||
|
||||
/* initialize tumbler */
|
||||
static int __init tumbler_init(struct snd_pmac *chip)
|
||||
static int __devinit tumbler_init(struct snd_pmac *chip)
|
||||
{
|
||||
int irq;
|
||||
struct pmac_tumbler *mix = chip->mixer_data;
|
||||
@ -1339,7 +1339,7 @@ static void tumbler_cleanup(struct snd_pmac *chip)
|
||||
}
|
||||
|
||||
/* exported */
|
||||
int __init snd_pmac_tumbler_init(struct snd_pmac *chip)
|
||||
int __devinit snd_pmac_tumbler_init(struct snd_pmac *chip)
|
||||
{
|
||||
int i, err;
|
||||
struct pmac_tumbler *mix;
|
||||
|
Loading…
Reference in New Issue
Block a user