mirror of
https://github.com/torvalds/linux.git
synced 2024-12-31 23:31:29 +00:00
VFIO: platform: reset: fix a warning message condition
This loop ends with count set to -1 and not zero so the warning message
isn't printed when it should be. I've fixed this by change the postop
to a preop.
Fixes: 0990822c98
('VFIO: platform: reset: AMD xgbe reset module')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
This commit is contained in:
parent
4ef7675344
commit
967628827f
@ -110,7 +110,7 @@ int vfio_platform_amdxgbe_reset(struct vfio_platform_device *vdev)
|
|||||||
usleep_range(10, 15);
|
usleep_range(10, 15);
|
||||||
|
|
||||||
count = 2000;
|
count = 2000;
|
||||||
while (count-- && (ioread32(xgmac_regs->ioaddr + DMA_MR) & 1))
|
while (--count && (ioread32(xgmac_regs->ioaddr + DMA_MR) & 1))
|
||||||
usleep_range(500, 600);
|
usleep_range(500, 600);
|
||||||
|
|
||||||
if (!count)
|
if (!count)
|
||||||
|
Loading…
Reference in New Issue
Block a user