mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
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:
parent
60b341b778
commit
339d3261aa
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ static bool check_device(struct device *dev)
|
|||
return false;
|
||||
|
||||
/* No device or no PCI device */
|
||||
if (!dev || dev->bus != &pci_bus_type)
|
||||
if (dev->bus != &pci_bus_type)
|
||||
return false;
|
||||
|
||||
devid = get_device_id(dev);
|
||||
|
|
Loading…
Reference in a new issue