Commit 99f664df authored by Takashi Iwai's avatar Takashi Iwai

ALSA: isa: Constify snd_device_ops definitions

Now we may declare const for snd_device_ops definitions, so let's do
it for optimization.

There should be no functional changes by this patch.

Link: https://lore.kernel.org/r/20200103081714.9560-8-tiwai@suse.deSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d23015c1
...@@ -577,7 +577,7 @@ int snd_ad1816a_create(struct snd_card *card, ...@@ -577,7 +577,7 @@ int snd_ad1816a_create(struct snd_card *card,
unsigned long port, int irq, int dma1, int dma2, unsigned long port, int irq, int dma1, int dma2,
struct snd_ad1816a *chip) struct snd_ad1816a *chip)
{ {
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_ad1816a_dev_free, .dev_free = snd_ad1816a_dev_free,
}; };
int error; int error;
......
...@@ -612,7 +612,7 @@ int snd_es1688_create(struct snd_card *card, ...@@ -612,7 +612,7 @@ int snd_es1688_create(struct snd_card *card,
int dma8, int dma8,
unsigned short hardware) unsigned short hardware)
{ {
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_es1688_dev_free, .dev_free = snd_es1688_dev_free,
}; };
......
...@@ -1753,7 +1753,7 @@ static int snd_es18xx_new_device(struct snd_card *card, ...@@ -1753,7 +1753,7 @@ static int snd_es18xx_new_device(struct snd_card *card,
int irq, int dma1, int dma2) int irq, int dma1, int dma2)
{ {
struct snd_es18xx *chip = card->private_data; struct snd_es18xx *chip = card->private_data;
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_es18xx_dev_free, .dev_free = snd_es18xx_dev_free,
}; };
int err; int err;
......
...@@ -134,7 +134,7 @@ int snd_gus_create(struct snd_card *card, ...@@ -134,7 +134,7 @@ int snd_gus_create(struct snd_card *card,
{ {
struct snd_gus_card *gus; struct snd_gus_card *gus;
int err; int err;
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_gus_dev_free, .dev_free = snd_gus_dev_free,
}; };
......
...@@ -528,7 +528,7 @@ static int snd_msnd_attach(struct snd_card *card) ...@@ -528,7 +528,7 @@ static int snd_msnd_attach(struct snd_card *card)
{ {
struct snd_msnd *chip = card->private_data; struct snd_msnd *chip = card->private_data;
int err; int err;
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_msnd_dev_free, .dev_free = snd_msnd_dev_free,
}; };
......
...@@ -1075,7 +1075,7 @@ snd_emu8000_new(struct snd_card *card, int index, long port, int seq_ports, ...@@ -1075,7 +1075,7 @@ snd_emu8000_new(struct snd_card *card, int index, long port, int seq_ports,
struct snd_seq_device *awe; struct snd_seq_device *awe;
struct snd_emu8000 *hw; struct snd_emu8000 *hw;
int err; int err;
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_emu8000_dev_free, .dev_free = snd_emu8000_dev_free,
}; };
......
...@@ -204,7 +204,7 @@ int snd_sbdsp_create(struct snd_card *card, ...@@ -204,7 +204,7 @@ int snd_sbdsp_create(struct snd_card *card,
{ {
struct snd_sb *chip; struct snd_sb *chip;
int err; int err;
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_sbdsp_dev_free, .dev_free = snd_sbdsp_dev_free,
}; };
......
...@@ -1772,7 +1772,7 @@ int snd_wss_create(struct snd_card *card, ...@@ -1772,7 +1772,7 @@ int snd_wss_create(struct snd_card *card,
unsigned short hwshare, unsigned short hwshare,
struct snd_wss **rchip) struct snd_wss **rchip)
{ {
static struct snd_device_ops ops = { static const struct snd_device_ops ops = {
.dev_free = snd_wss_dev_free, .dev_free = snd_wss_dev_free,
}; };
struct snd_wss *chip; struct snd_wss *chip;
......
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