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:
@@ -84,7 +84,7 @@ void set_irq_remapping_broken(void)
|
|||||||
bool irq_remapping_cap(enum irq_remap_cap cap)
|
bool irq_remapping_cap(enum irq_remap_cap cap)
|
||||||
{
|
{
|
||||||
if (!remap_ops || disable_irq_post)
|
if (!remap_ops || disable_irq_post)
|
||||||
return 0;
|
return false;
|
||||||
|
|
||||||
return (remap_ops->capability & (1 << cap));
|
return (remap_ops->capability & (1 << cap));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user