]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ALSA: isa: Constify snd_device_ops definitions
authorTakashi Iwai <tiwai@suse.de>
Fri, 3 Jan 2020 08:16:23 +0000 (09:16 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 3 Jan 2020 08:23:54 +0000 (09:23 +0100)
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.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/isa/ad1816a/ad1816a_lib.c
sound/isa/es1688/es1688_lib.c
sound/isa/es18xx.c
sound/isa/gus/gus_main.c
sound/isa/msnd/msnd_pinnacle.c
sound/isa/sb/emu8000.c
sound/isa/sb/sb_common.c
sound/isa/wss/wss_lib.c

index da6f68b8c248d32728974930fc0cafa9dba846de..560885fbc983a206485748ebc7022a916fcbaaa7 100644 (file)
@@ -577,7 +577,7 @@ int snd_ad1816a_create(struct snd_card *card,
                       unsigned long port, int irq, int dma1, int dma2,
                       struct snd_ad1816a *chip)
 {
-        static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =     snd_ad1816a_dev_free,
        };
        int error;
index 632e867c57663cd1469f1decc955a77390abf779..99a833f295449700bba663423cd359c42006b569 100644 (file)
@@ -612,7 +612,7 @@ int snd_es1688_create(struct snd_card *card,
                      int dma8,
                      unsigned short hardware)
 {
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =     snd_es1688_dev_free,
        };
                                 
index a581083b876bf5e3725b06f8f10b60f8d2a382ea..f9cd05d2b3bd76428ab47e21de3d3c64a4e4a645 100644 (file)
@@ -1753,7 +1753,7 @@ static int snd_es18xx_new_device(struct snd_card *card,
                                 int irq, int dma1, int dma2)
 {
        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,
         };
        int err;
index 9f94b5f3b029b313b7a1a847e97a98efafdf07af..e9fc333c0fcbf5bb46af50da66c4a1b4bf901f48 100644 (file)
@@ -134,7 +134,7 @@ int snd_gus_create(struct snd_card *card,
 {
        struct snd_gus_card *gus;
        int err;
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =     snd_gus_dev_free,
        };
 
index 9e7f03eec7e60ff9a5142cf6ea8c018bbfe631c1..7fca418a64f8bf59cc723c8afb5ff43d7f2beab6 100644 (file)
@@ -528,7 +528,7 @@ static int snd_msnd_attach(struct snd_card *card)
 {
        struct snd_msnd *chip = card->private_data;
        int err;
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =      snd_msnd_dev_free,
                };
 
index 433e32e254f90f44e158155860acf8754e223294..bc47e8e5152331ce9c088d89c33d4428dde1256a 100644 (file)
@@ -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_emu8000 *hw;
        int err;
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free = snd_emu8000_dev_free,
        };
 
index 4aaf9ab82afe8ab9ee565bd2f2e0f8484a39c1b4..61ea4078aa959230d4fbf28a9a4675b890d210f7 100644 (file)
@@ -204,7 +204,7 @@ int snd_sbdsp_create(struct snd_card *card,
 {
        struct snd_sb *chip;
        int err;
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =     snd_sbdsp_dev_free,
        };
 
index 100e8b547d27bb2d26c8bdadbed2fa94e85c294d..b51b50154e8aa11e70b6221bb13ed1dbf3e05a7e 100644 (file)
@@ -1772,7 +1772,7 @@ int snd_wss_create(struct snd_card *card,
                      unsigned short hwshare,
                      struct snd_wss **rchip)
 {
-       static struct snd_device_ops ops = {
+       static const struct snd_device_ops ops = {
                .dev_free =     snd_wss_dev_free,
        };
        struct snd_wss *chip;