iommu/vt-d: Return false instead of 0 in irq_remapping_cap()
The function return type is bool, so return false instead of 0. Signed-off-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
f303e50766
commit
30e93761fb
|
@ -84,7 +84,7 @@ void set_irq_remapping_broken(void)
|
|||
bool irq_remapping_cap(enum irq_remap_cap cap)
|
||||
{
|
||||
if (!remap_ops || disable_irq_post)
|
||||
return 0;
|
||||
return false;
|
||||
|
||||
return (remap_ops->capability & (1 << cap));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue