x86/amd-iommu: Remove double NULL check in check_device
dev was tested just above, so drop the second test. Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:

committed by
Joerg Roedel

parent
60b341b778
commit
339d3261aa
@@ -118,7 +118,7 @@ static bool check_device(struct device *dev)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
/* No device or no PCI device */
|
/* No device or no PCI device */
|
||||||
if (!dev || dev->bus != &pci_bus_type)
|
if (dev->bus != &pci_bus_type)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
devid = get_device_id(dev);
|
devid = get_device_id(dev);
|
||||||
|
Reference in New Issue
Block a user