All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] alsa: snd_pcm_new api cleanup
@ 2009-02-05 11:27 Tim Blechmann
  2009-02-05 11:29 ` Takashi Iwai
  0 siblings, 1 reply; 5+ messages in thread
From: Tim Blechmann @ 2009-02-05 11:27 UTC (permalink / raw)
  To: alsa-devel

Impact: cleanup

snd_pcm_new takes a char *id argument, although it is not modifying
the string. it can therefore be declared as const char *id.

Signed-off-by: Tim Blechmann <tim@klingt.org>
---
 sound/core/pcm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/core/pcm.c b/sound/core/pcm.c
index 192a433..583453e 100644
--- a/sound/core/pcm.c
+++ b/sound/core/pcm.c
@@ -692,7 +692,7 @@ EXPORT_SYMBOL(snd_pcm_new_stream);
  *
  * Returns zero if successful, or a negative error code on failure.
  */
-int snd_pcm_new(struct snd_card *card, char *id, int device,
+int snd_pcm_new(struct snd_card *card, const char *id, int device,
 		int playback_count, int capture_count,
 	        struct snd_pcm ** rpcm)
 {
-- 
1.5.6.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-02-05 14:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-05 11:27 [PATCH] alsa: snd_pcm_new api cleanup Tim Blechmann
2009-02-05 11:29 ` Takashi Iwai
2009-02-05 12:01   ` Tim Blechmann
2009-02-05 14:38     ` Takashi Iwai
2009-02-05 12:04   ` Tim Blechmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.