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

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.de


Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d23015c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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,
	};
                                
+1 −1
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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,
	};

+1 −1
Original line number Diff line number Diff line
@@ -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,
		};

Loading