diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2014-05-27 19:14:40 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-05-27 19:35:13 +0400 |
commit | 4a286d55285fa865df3810f632bd5747dc6e8475 (patch) | |
tree | 7efe9ba1ce9aa4e22e21f795201ba6d8154ce7ab /sound/firewire/bebob/bebob.h | |
parent | 93219d0649703f4106bbc44b9bb71771475ee254 (diff) | |
download | linux-4a286d55285fa865df3810f632bd5747dc6e8475.tar.xz |
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/bebob.h')
-rw-r--r-- | sound/firewire/bebob/bebob.h | 2 |
1 files changed, 1 insertions, 1 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); int snd_bebob_stream_map(struct snd_bebob *bebob, struct amdtp_stream *stream); int snd_bebob_stream_init_duplex(struct snd_bebob *bebob); -int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, int rate); +int snd_bebob_stream_start_duplex(struct snd_bebob *bebob, unsigned int rate); void snd_bebob_stream_stop_duplex(struct snd_bebob *bebob); void snd_bebob_stream_update_duplex(struct snd_bebob *bebob); void snd_bebob_stream_destroy_duplex(struct snd_bebob *bebob); |