Commit e1094f9f authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds

backlight: lms283gf05: remove unnecessary OOM messages

The site-specific OOM messages are unnecessary, because they duplicate
the MM subsystem generic OOM message.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Acked-by: default avatarMarek Vasut <marex@denx.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 44d516f9
...@@ -168,10 +168,8 @@ static int lms283gf05_probe(struct spi_device *spi) ...@@ -168,10 +168,8 @@ static int lms283gf05_probe(struct spi_device *spi)
st = devm_kzalloc(&spi->dev, sizeof(struct lms283gf05_state), st = devm_kzalloc(&spi->dev, sizeof(struct lms283gf05_state),
GFP_KERNEL); GFP_KERNEL);
if (st == NULL) { if (st == NULL)
dev_err(&spi->dev, "No memory for device state\n");
return -ENOMEM; return -ENOMEM;
}
ld = devm_lcd_device_register(&spi->dev, "lms283gf05", &spi->dev, st, ld = devm_lcd_device_register(&spi->dev, "lms283gf05", &spi->dev, st,
&lms_ops); &lms_ops);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment