Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1698758 > unrolled thread

[PATCH 1/5] ALSA: sound/core: constify snd_timer_hardware structures

Started byBhumika Goyal <bhumirks@gmail.com>
First post2017-07-28 15:10 +0200
Last post2017-07-28 15:10 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 1/5] ALSA: sound/core: constify snd_timer_hardware structures Bhumika Goyal <bhumirks@gmail.com> - 2017-07-28 15:10 +0200

#1698758 — [PATCH 1/5] ALSA: sound/core: constify snd_timer_hardware structures

FromBhumika Goyal <bhumirks@gmail.com>
Date2017-07-28 15:10 +0200
Subject[PATCH 1/5] ALSA: sound/core: constify snd_timer_hardware structures
Message-ID<u8dbI-4ad-9@gated-at.bofh.it>
Declare snd_timer_hardware structures as const as their only usage is
during a copy operation. As they are not modified anywhere, they can be
made const.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 sound/core/hrtimer.c   | 2 +-
 sound/core/pcm_timer.c | 2 +-
 sound/core/timer.c     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/core/hrtimer.c b/sound/core/hrtimer.c
index 1ac0c42..1ba70bc 100644
--- a/sound/core/hrtimer.c
+++ b/sound/core/hrtimer.c
@@ -127,7 +127,7 @@ static int snd_hrtimer_stop(struct snd_timer *t)
 	return 0;
 }
 
-static struct snd_timer_hardware hrtimer_hw = {
+static const struct snd_timer_hardware hrtimer_hw = {
 	.flags =	SNDRV_TIMER_HW_AUTO | SNDRV_TIMER_HW_TASKLET,
 	.open =		snd_hrtimer_open,
 	.close =	snd_hrtimer_close,
diff --git a/sound/core/pcm_timer.c b/sound/core/pcm_timer.c
index 11389f1..3aa2152 100644
--- a/sound/core/pcm_timer.c
+++ b/sound/core/pcm_timer.c
@@ -90,7 +90,7 @@ static int snd_pcm_timer_stop(struct snd_timer * timer)
 	return 0;
 }
 
-static struct snd_timer_hardware snd_pcm_timer =
+static const struct snd_timer_hardware snd_pcm_timer =
 {
 	.flags =	SNDRV_TIMER_HW_AUTO | SNDRV_TIMER_HW_SLAVE,
 	.resolution =	0,
diff --git a/sound/core/timer.c b/sound/core/timer.c
index a9b9a27..e156aa8 100644
--- a/sound/core/timer.c
+++ b/sound/core/timer.c
@@ -1086,7 +1086,7 @@ static int snd_timer_s_close(struct snd_timer *timer)
 	return 0;
 }
 
-static struct snd_timer_hardware snd_timer_system =
+static const struct snd_timer_hardware snd_timer_system =
 {
 	.flags =	SNDRV_TIMER_HW_FIRST | SNDRV_TIMER_HW_TASKLET,
 	.resolution =	1000000000L / HZ,
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web