2008-10-16 20:29:45

by Adrian Bunk

[permalink] [raw]
Subject: [2.6 patch] init/do_mounts_md.c must #include <linux/delay.h>

This patch fixes the following compile error caused by
commit 589f800bb12c5cd6c9167bbf9bf3cb70cd8e422c
(fastboot: make the raid autodetect code wait for all devices to init):

<-- snip -->

...
CC init/do_mounts_md.o
init/do_mounts_md.c: In function 'autodetect_raid':
init/do_mounts_md.c:285: error: implicit declaration of function 'msleep'
make[2]: *** [init/do_mounts_md.o] Error 1

<-- snip -->

Signed-off-by: Adrian Bunk <[email protected]>

---

diff --git a/init/do_mounts_md.c b/init/do_mounts_md.c
index 48b3fad..4c87ee1 100644
--- a/init/do_mounts_md.c
+++ b/init/do_mounts_md.c
@@ -1,5 +1,6 @@

#include <linux/raid/md.h>
+#include <linux/delay.h>

#include "do_mounts.h"


2008-10-16 22:41:22

by Arjan van de Ven

[permalink] [raw]
Subject: Re: [2.6 patch] init/do_mounts_md.c must #include <linux/delay.h>

sigh; header "cleanups" crossing ;(


Adrian Bunk wrote:
> This patch fixes the following compile error caused by
> commit 589f800bb12c5cd6c9167bbf9bf3cb70cd8e422c
> (fastboot: make the raid autodetect code wait for all devices to init):
>
> <-- snip -->
>
> ...
> CC init/do_mounts_md.o
> init/do_mounts_md.c: In function 'autodetect_raid':
> init/do_mounts_md.c:285: error: implicit declaration of function 'msleep'
> make[2]: *** [init/do_mounts_md.o] Error 1
>
> <-- snip -->
>
> Signed-off-by: Adrian Bunk <[email protected]>
>
> ---
>
> diff --git a/init/do_mounts_md.c b/init/do_mounts_md.c
> index 48b3fad..4c87ee1 100644
> --- a/init/do_mounts_md.c
> +++ b/init/do_mounts_md.c
> @@ -1,5 +1,6 @@
>
> #include <linux/raid/md.h>
> +#include <linux/delay.h>
>
> #include "do_mounts.h"
>
>