ASoC: Intel: bytcht_es8316: fix compilation warning
Remove warning below, align with other machine drivers.
bytcht_es8316.c:508:11: warning: cast from pointer to integer of
different size [-Wpointer-to-int-cast]
quirk = (int)dmi_id->driver_data;
^
Fixes: a8d218f4fe
('ASoC: Intel: bytcht_es8316: Add quirk for the Teclast X98+ II')
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Родитель
812ad463e0
Коммит
1fb1e93a1d
|
@ -61,7 +61,7 @@ enum {
|
|||
#define BYT_CHT_ES8316_MONO_SPEAKER BIT(17)
|
||||
#define BYT_CHT_ES8316_JD_INVERTED BIT(18)
|
||||
|
||||
static int quirk;
|
||||
static unsigned long quirk;
|
||||
|
||||
static int quirk_override = -1;
|
||||
module_param_named(quirk, quirk_override, int, 0444);
|
||||
|
@ -505,7 +505,7 @@ static int snd_byt_cht_es8316_mc_probe(struct platform_device *pdev)
|
|||
/* Check for BYTCR or other platform and setup quirks */
|
||||
dmi_id = dmi_first_match(byt_cht_es8316_quirk_table);
|
||||
if (dmi_id) {
|
||||
quirk = (int)dmi_id->driver_data;
|
||||
quirk = (unsigned long)dmi_id->driver_data;
|
||||
} else if (x86_match_cpu(baytrail_cpu_ids) &&
|
||||
mach->mach_params.acpi_ipc_irq_index == 0) {
|
||||
/* On BYTCR default to SSP0, internal-mic-in2-map, mono-spk */
|
||||
|
@ -517,7 +517,8 @@ static int snd_byt_cht_es8316_mc_probe(struct platform_device *pdev)
|
|||
BYT_CHT_ES8316_MONO_SPEAKER;
|
||||
}
|
||||
if (quirk_override != -1) {
|
||||
dev_info(dev, "Overriding quirk 0x%x => 0x%x\n", quirk,
|
||||
dev_info(dev, "Overriding quirk 0x%x => 0x%x\n",
|
||||
(unsigned int)quirk,
|
||||
quirk_override);
|
||||
quirk = quirk_override;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче