backlight: lms283gf05: remove unnecessary OOM messages
authorJingoo Han <[email protected]>
Thu, 3 Apr 2014 21:49:04 +0000 (14:49 -0700)
committerLinus Torvalds <[email protected]>
Thu, 3 Apr 2014 23:21:11 +0000 (16:21 -0700)
The site-specific OOM messages are unnecessary, because they duplicate
the MM subsystem generic OOM message.

Signed-off-by: Jingoo Han <[email protected]>
Acked-by: Marek Vasut <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/video/backlight/lms283gf05.c

index de8832504f682422bae9c5bff28743c98ca99d31..14590c54aedf3bf50e843c85b65b6a33eae43b14 100644 (file)
@@ -168,10 +168,8 @@ static int lms283gf05_probe(struct spi_device *spi)
 
        st = devm_kzalloc(&spi->dev, sizeof(struct lms283gf05_state),
                                GFP_KERNEL);
-       if (st == NULL) {
-               dev_err(&spi->dev, "No memory for device state\n");
+       if (st == NULL)
                return -ENOMEM;
-       }
 
        ld = devm_lcd_device_register(&spi->dev, "lms283gf05", &spi->dev, st,
                                        &lms_ops);