staging: kpc2000: remove unnecessary oom message
authorSimon Sandström <simon@nikanor.nu>
Thu, 23 May 2019 12:51:43 +0000 (14:51 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 May 2019 07:02:38 +0000 (09:02 +0200)
Fixes checkpatch.pl warning "Possible unnecessary 'out of memory'
message".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/kpc2000/kpc2000/cell_probe.c

index 5e65bd56d66e0b414713d6d01499d77f8ff38c45..f731a97c6cac9b3febee4703923c799a3490cdef 100644 (file)
@@ -291,10 +291,8 @@ static int probe_core_uio(unsigned int core_num, struct kp2000_device *pcard,
        dev_dbg(&pcard->pdev->dev, "Found UIO core:   type = %02d  dma = %02x / %02x  offset = 0x%x  length = 0x%x (%d regs)\n", cte.type, KPC_OLD_S2C_DMA_CH_NUM(cte), KPC_OLD_C2S_DMA_CH_NUM(cte), cte.offset, cte.length, cte.length / 8);
 
        kudev = kzalloc(sizeof(*kudev), GFP_KERNEL);
-       if (!kudev) {
-               dev_err(&pcard->pdev->dev, "probe_core_uio: failed to kzalloc kpc_uio_device\n");
+       if (!kudev)
                return -ENOMEM;
-       }
 
        INIT_LIST_HEAD(&kudev->list);
        kudev->pcard = pcard;