diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2014-05-27 11:14:40 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-05-27 11:35:13 -0400 |
commit | 4a286d55285fa865df3810f632bd5747dc6e8475 (patch) | |
tree | 7efe9ba1ce9aa4e22e21f795201ba6d8154ce7ab /sound/firewire/bebob | |
parent | 93219d0649703f4106bbc44b9bb71771475ee254 (diff) |
ALSA: fireworks/bebob: Change type of argument for sampling rate
Originally, I intent to this argument given with 'struct snd_pcm_runtime.rate'
or params_rate(). They return value of 'unsigned int'. So 'unsigned int' is
better for the type of this argument.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/bebob')
-rw-r--r-- | sound/firewire/bebob/bebob.h | 2 | ||||
-rw-r--r-- | sound/firewire/bebob/bebob_stream.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/bebob/bebob.h b/sound/firewire/bebob/bebob.h index 91b26b0c649a..6aef1520d720 100644 --- a/sound/firewire/bebob/bebob.h +++ b/sound/firewire/bebob/bebob.h | |||
@@ -211,7 +211,7 @@ int snd_bebob_stream_discover(struct snd_bebob *bebob); | |||
211 | int snd_bebob_stream_map(struct snd_bebob *bebob, | 211 | int snd_bebob_stream_map(struct snd_bebob *bebob, |
212 | struct amdtp_stream *stream); | 212 | struct amdtp_stream *stream); |
213 | int snd_bebob_stream_init_duplex(struct snd_bebob *bebob); | 213 | int snd_bebob_stream_init_duplex(struct snd_bebob *bebob); |
214 | int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, int rate); | 214 | int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, unsigned int rate); |
215 | void snd_bebob_stream_stop_duplex(struct snd_bebob *bebob); | 215 | void snd_bebob_stream_stop_duplex(struct snd_bebob *bebob); |
216 | void snd_bebob_stream_update_duplex(struct snd_bebob *bebob); | 216 | void snd_bebob_stream_update_duplex(struct snd_bebob *bebob); |
217 | void snd_bebob_stream_destroy_duplex(struct snd_bebob *bebob); | 217 | void snd_bebob_stream_destroy_duplex(struct snd_bebob *bebob); |
diff --git a/sound/firewire/bebob/bebob_stream.c b/sound/firewire/bebob/bebob_stream.c index 452e93684e49..fbe938c79e3a 100644 --- a/sound/firewire/bebob/bebob_stream.c +++ b/sound/firewire/bebob/bebob_stream.c | |||
@@ -483,7 +483,7 @@ end: | |||
483 | return err; | 483 | return err; |
484 | } | 484 | } |
485 | 485 | ||
486 | int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, int rate) | 486 | int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, unsigned int rate) |
487 | { | 487 | { |
488 | struct snd_bebob_rate_spec *rate_spec = bebob->spec->rate; | 488 | struct snd_bebob_rate_spec *rate_spec = bebob->spec->rate; |
489 | struct amdtp_stream *master, *slave; | 489 | struct amdtp_stream *master, *slave; |