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

Commit ff083c83 authored by Mike Frysinger's avatar Mike Frysinger Committed by Linus Torvalds
Browse files

autodetect_raid: add missing __init marking



The function autodetect_raid is only used by __init functions, and it refers
to __initdata, so it needs __init markings.  Fixes this error:
The function autodetect_raid() references
the variable __initdata raid_noautodetect.
This is often because autodetect_raid lacks a __initdata
annotation or the annotation of raid_noautodetect is wrong.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7ec7fb39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -271,7 +271,7 @@ static int __init raid_setup(char *str)
__setup("raid=", raid_setup);
__setup("md=", md_setup);

static void autodetect_raid(void)
static void __init autodetect_raid(void)
{
	int fd;