Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 396c9b92 authored by Henrik Kretzschmar's avatar Henrik Kretzschmar Committed by Jaroslav Kysela
Browse files

[ALSA] add __devinitdata to all pci_device_id

parent 71b2ccc3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -616,7 +616,7 @@ static struct snd_kcontrol_new snd_cx88_capture_volume = {
 * Only boards with eeprom and byte 1 at eeprom=1 have it
 */

static struct pci_device_id cx88_audio_pci_tbl[] = {
static struct pci_device_id cx88_audio_pci_tbl[] __devinitdata = {
	{0x14f1,0x8801,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
	{0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
	{0, }
+1 −1
Original line number Diff line number Diff line
@@ -1051,7 +1051,7 @@ snd_ad1889_remove(struct pci_dev *pci)
	pci_set_drvdata(pci, NULL);
}

static struct pci_device_id snd_ad1889_ids[] = {
static struct pci_device_id snd_ad1889_ids[] __devinitdata = {
	{ PCI_DEVICE(PCI_VENDOR_ID_ANALOG_DEVICES, PCI_DEVICE_ID_AD1889JS) },
	{ 0, },
};
+1 −1
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@ struct snd_ali {
#endif
};

static struct pci_device_id snd_ali_ids[] = {
static struct pci_device_id snd_ali_ids[] __devinitdata = {
	{PCI_DEVICE(PCI_VENDOR_ID_AL, PCI_DEVICE_ID_AL_M5451), 0, 0, 0},
	{0, }
};
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ struct snd_als300_substream_data {
	int block_counter_register;
};

static struct pci_device_id snd_als300_ids[] = {
static struct pci_device_id snd_als300_ids[] __devinitdata = {
	{ 0x4005, 0x0300, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALS300 },
	{ 0x4005, 0x0308, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALS300_PLUS },
	{ 0, }
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ struct snd_card_als4000 {
#endif
};

static struct pci_device_id snd_als4000_ids[] = {
static struct pci_device_id snd_als4000_ids[] __devinitdata = {
	{ 0x4005, 0x4000, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, },   /* ALS4000 */
	{ 0, }
};
Loading