[ALSA] Fix conflicts between const and __devinitdata
Marvin told with a depressed face, gcc doesn't like both __devinitdata and const in the same line. So, remove const from all over places now... Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
This commit is contained in:

zatwierdzone przez
Jaroslav Kysela

rodzic
bf748ed73e
commit
1b60f6b090
@@ -364,7 +364,7 @@ static const DECLARE_TLV_DB_SCALE(db_scale_adc, 0, 150, 0);
|
||||
* mixers
|
||||
*/
|
||||
|
||||
static const struct snd_kcontrol_new stac_controls[] __devinitdata = {
|
||||
static struct snd_kcontrol_new stac_controls[] __devinitdata = {
|
||||
{
|
||||
.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
|
||||
.name = "Master Playback Switch",
|
||||
@@ -506,7 +506,7 @@ static int __devinit prodigy192_init(struct snd_ice1712 *ice)
|
||||
* hence the driver needs to sets up it properly.
|
||||
*/
|
||||
|
||||
static const unsigned char prodigy71_eeprom[] __devinitdata = {
|
||||
static unsigned char prodigy71_eeprom[] __devinitdata = {
|
||||
[ICE_EEP2_SYSCONF] = 0x2b, /* clock 512, mpu401, spdif-in/ADC, 4DACs */
|
||||
[ICE_EEP2_ACLINK] = 0x80, /* I2S */
|
||||
[ICE_EEP2_I2S] = 0xf8, /* vol, 96k, 24bit, 192k */
|
||||
@@ -524,7 +524,7 @@ static const unsigned char prodigy71_eeprom[] __devinitdata = {
|
||||
|
||||
|
||||
/* entry point */
|
||||
const struct snd_ice1712_card_info snd_vt1724_prodigy192_cards[] __devinitdata = {
|
||||
struct snd_ice1712_card_info snd_vt1724_prodigy192_cards[] __devinitdata = {
|
||||
{
|
||||
.subvendor = VT1724_SUBDEVICE_PRODIGY192VE,
|
||||
.name = "Audiotrak Prodigy 192",
|
||||
|
Reference in New Issue
Block a user