mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
ASoC: bytcr_rt5640: Fix a typo and quirk parameter type
The previous patch for adding the quirk module option had a typo in
its info print, which results in a weird output. Also, the parameter
type should be rather unsigned int instead of signed int.
Fixes: 9f2cf73ed6
("ASoC: bytcr_rt5640: Allow quirk set via module option")
Reported-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
9f2cf73ed6
commit
0b2c9f88b9
@ -60,7 +60,7 @@ struct byt_rt5640_private {
|
||||
|
||||
static unsigned long byt_rt5640_quirk = BYT_RT5640_MCLK_EN;
|
||||
static unsigned int quirk_override;
|
||||
module_param_named(quirk, quirk_override, int, 0444);
|
||||
module_param_named(quirk, quirk_override, uint, 0444);
|
||||
MODULE_PARM_DESC(quirk, "Board-specific quirk override");
|
||||
|
||||
static void log_quirks(struct device *dev)
|
||||
@ -811,7 +811,7 @@ static int snd_byt_rt5640_mc_probe(struct platform_device *pdev)
|
||||
/* check quirks before creating card */
|
||||
dmi_check_system(byt_rt5640_quirk_table);
|
||||
if (quirk_override) {
|
||||
dev_info(&pdev->dev, "Overriding quirk %0x => 0x%x\n",
|
||||
dev_info(&pdev->dev, "Overriding quirk 0x%x => 0x%x\n",
|
||||
(unsigned int)byt_rt5640_quirk, quirk_override);
|
||||
byt_rt5640_quirk = quirk_override;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user