backlight: ili9320: remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Родитель
619e1b491b
Коммит
a82bdcfb3b
|
@ -219,10 +219,8 @@ int ili9320_probe_spi(struct spi_device *spi,
|
|||
/* allocate and initialse our state */
|
||||
|
||||
ili = devm_kzalloc(&spi->dev, sizeof(struct ili9320), GFP_KERNEL);
|
||||
if (ili == NULL) {
|
||||
dev_err(dev, "no memory for device\n");
|
||||
if (ili == NULL)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
ili->access.spi.id = ILI9320_SPI_IDCODE | ILI9320_SPI_ID(1);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче