mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-04 19:34:17 +08:00
ALSA: firewire-lib: Fix sparse warning of incorrect type in assignment
__be32 value should not be assigned directly to bool value. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
f9503a68fb
commit
51212eea4f
@ -164,7 +164,9 @@ int cmp_connection_check_used(struct cmp_connection *c, bool *used)
|
|||||||
c->resources.unit, TCODE_READ_QUADLET_REQUEST,
|
c->resources.unit, TCODE_READ_QUADLET_REQUEST,
|
||||||
pcr_address(c), &pcr, 4, 0);
|
pcr_address(c), &pcr, 4, 0);
|
||||||
if (err >= 0)
|
if (err >= 0)
|
||||||
*used = (pcr & cpu_to_be32(PCR_BCAST_CONN | PCR_P2P_CONN_MASK));
|
*used = !!(pcr & cpu_to_be32(PCR_BCAST_CONN |
|
||||||
|
PCR_P2P_CONN_MASK));
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(cmp_connection_check_used);
|
EXPORT_SYMBOL(cmp_connection_check_used);
|
||||||
|
Loading…
Reference in New Issue
Block a user