mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 14:41:39 +00:00
vfio: fix a warning message
The first argument to the WARN() macro has to be a condition. I'm sort of disappointed that this code doesn't generate a compiler warning. I guess -Wformat-extra-args doesn't work in the kernel. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
This commit is contained in:
parent
7200be7c81
commit
049af1060b
@ -682,7 +682,7 @@ static int vfio_group_nb_add_dev(struct vfio_group *group, struct device *dev)
|
||||
return 0;
|
||||
|
||||
/* TODO Prevent device auto probing */
|
||||
WARN("Device %s added to live group %d!\n", dev_name(dev),
|
||||
WARN(1, "Device %s added to live group %d!\n", dev_name(dev),
|
||||
iommu_group_id(group->iommu_group));
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user