mfd: Check jz4740-adc kmalloc() result
authorAxel Lin <axel.lin@gmail.com>
Mon, 2 Aug 2010 01:02:02 +0000 (09:02 +0800)
committerSamuel Ortiz <sameo@linux.intel.com>
Thu, 12 Aug 2010 09:28:02 +0000 (11:28 +0200)
If kmalloc() fails exit with -ENOMEM.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/jz4740-adc.c

index b30e44a..3ad492c 100644 (file)
@@ -260,6 +260,10 @@ static int __devinit jz4740_adc_probe(struct platform_device *pdev)
        int irq;
 
        adc = kmalloc(sizeof(*adc), GFP_KERNEL);
+       if (!adc) {
+               dev_err(&pdev->dev, "Failed to allocate driver structure\n");
+               return -ENOMEM;
+       }
 
        adc->irq = platform_get_irq(pdev, 0);
        if (adc->irq < 0) {