mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 23:28:55 +00:00
ASoC: Fix type for snd_soc_volatile_register()
We generally refer to registers as unsigned ints (including in the underlying CODEC driver operation). Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
This commit is contained in:
parent
86c3304181
commit
181e055e6b
2 changed files with 4 additions and 2 deletions
|
@ -267,7 +267,8 @@ int snd_soc_register_codec(struct device *dev,
|
||||||
const struct snd_soc_codec_driver *codec_drv,
|
const struct snd_soc_codec_driver *codec_drv,
|
||||||
struct snd_soc_dai_driver *dai_drv, int num_dai);
|
struct snd_soc_dai_driver *dai_drv, int num_dai);
|
||||||
void snd_soc_unregister_codec(struct device *dev);
|
void snd_soc_unregister_codec(struct device *dev);
|
||||||
int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg);
|
int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
|
||||||
|
unsigned int reg);
|
||||||
int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
|
int snd_soc_codec_set_cache_io(struct snd_soc_codec *codec,
|
||||||
int addr_bits, int data_bits,
|
int addr_bits, int data_bits,
|
||||||
enum snd_soc_control_type control);
|
enum snd_soc_control_type control);
|
||||||
|
|
|
@ -2029,7 +2029,8 @@ static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
|
||||||
*
|
*
|
||||||
* Boolean function indiciating if a CODEC register is volatile.
|
* Boolean function indiciating if a CODEC register is volatile.
|
||||||
*/
|
*/
|
||||||
int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg)
|
int snd_soc_codec_volatile_register(struct snd_soc_codec *codec,
|
||||||
|
unsigned int reg)
|
||||||
{
|
{
|
||||||
if (codec->volatile_register)
|
if (codec->volatile_register)
|
||||||
return codec->volatile_register(codec, reg);
|
return codec->volatile_register(codec, reg);
|
||||||
|
|
Loading…
Add table
Reference in a new issue