Commit 7ee41749 authored by Markus Elfring's avatar Markus Elfring Committed by Michael Ellerman
Browse files

powerpc/ps3: Remove duplicate error message

parent 4bdd3946
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -613,10 +613,8 @@ static int update_flash_db(void)
	/* Read in header and db from flash. */

	header = kmalloc(buf_len, GFP_KERNEL);
	if (!header) {
		pr_debug("%s: kmalloc failed\n", __func__);
	if (!header)
		return -ENOMEM;
	}

	count = os_area_flash_read(header, buf_len, 0);
	if (count < 0) {