Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a82bdcfb authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds
Browse files

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: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 619e1b49
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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);