Commit 433b3084 authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Vinod Koul

soundwire: dmi-quirks: add ull suffix for SoundWire _ADR values

Sparse throws the following type of warnings:

drivers/soundwire/dmi-quirks.c:25:17: error: constant
0x000010025D070100 is so big it is long

Let's add the 'ull' suffix to make this go away and find real issues.
Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: default avatarPaul Olaru <paul.olaru@oss.nxp.com>
Reviewed-by: default avatarGuennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Reviewed-by: default avatarRander Wang <rander.wang@intel.com>
Signed-off-by: default avatarBard Liao <yung-chuan.liao@linux.intel.com>
Link: https://lore.kernel.org/r/20210714013027.17022-1-yung-chuan.liao@linux.intel.comSigned-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent e73f0f0e
...@@ -22,12 +22,12 @@ struct adr_remap { ...@@ -22,12 +22,12 @@ struct adr_remap {
*/ */
static const struct adr_remap hp_spectre_360[] = { static const struct adr_remap hp_spectre_360[] = {
{ {
0x000010025D070100, 0x000010025D070100ull,
0x000020025D071100 0x000020025D071100ull
}, },
{ {
0x000110025d070100, 0x000110025d070100ull,
0x000120025D130800 0x000120025D130800ull
}, },
{} {}
}; };
...@@ -39,18 +39,18 @@ static const struct adr_remap hp_spectre_360[] = { ...@@ -39,18 +39,18 @@ static const struct adr_remap hp_spectre_360[] = {
static const struct adr_remap dell_sku_0A3E[] = { static const struct adr_remap dell_sku_0A3E[] = {
/* rt715 on link0 */ /* rt715 on link0 */
{ {
0x00020025d071100, 0x00020025d071100ull,
0x00021025d071500 0x00021025d071500ull
}, },
/* rt711 on link1 */ /* rt711 on link1 */
{ {
0x000120025d130800, 0x000120025d130800ull,
0x000120025d071100, 0x000120025d071100ull,
}, },
/* rt1308 on link2 */ /* rt1308 on link2 */
{ {
0x000220025d071500, 0x000220025d071500ull,
0x000220025d130800 0x000220025d130800ull
}, },
{} {}
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment