lkml.org 
[lkml]   [2010]   [Apr]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 01/12] x86/amd-iommu: Remove double NULL check in check_device
    Date
    From: Julia Lawall <julia@diku.dk>

    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>
    ---
    arch/x86/kernel/amd_iommu.c | 2 +-
    1 files changed, 1 insertions(+), 1 deletions(-)

    diff --git a/arch/x86/kernel/amd_iommu.c b/arch/x86/kernel/amd_iommu.c
    index adb0ba0..2c4a501 100644
    --- a/arch/x86/kernel/amd_iommu.c
    +++ b/arch/x86/kernel/amd_iommu.c
    @@ -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);
    --
    1.7.0.4



    \
     
     \ /
      Last update: 2010-04-07 14:51    [W:5.038 / U:1.776 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site