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

Commit 9ba126cf authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] Fix warning about init_initrd() call if !CONFIG_BLK_DEV_INITRD.

parent 1a5c5de1
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -223,7 +223,11 @@ static void __init finalize_initrd(void)

#else  /* !CONFIG_BLK_DEV_INITRD */

#define init_initrd()		0
static unsigned long __init init_initrd(void)
{
	return 0;
}

#define finalize_initrd()	do {} while (0)

#endif