提交 30e93761 编写于 作者: J Joerg Roedel

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: NJoerg Roedel <jroedel@suse.de>
上级 f303e507
......@@ -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));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册