diff options
author | Jeff Mahoney <jeffm@suse.com> | 2011-02-24 14:49:00 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-23 13:03:48 -0700 |
commit | 9396b825a10a1f25f60085f49e2cde42a4bd39ee (patch) | |
tree | 4d0c89a1cab7f6a19356a78947d13f1392db72d0 | |
parent | 1bc826c80dbd4a542557f3b1bef322e3e1b730ef (diff) |
staging: winbond: needs <linux/delay.h> for msleep and friends
commit cecf826df8648c843ea8db63b1f82c154a74db36 upstream.
linux/delay.h is pulled in somehow on x86 but not on ia64 or powerpc.
This fixes a build failure on those arches since they use [mu]delay.
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/staging/winbond/core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/winbond/core.h b/drivers/staging/winbond/core.h index d7b3aca5dde..6160b2fab83 100644 --- a/drivers/staging/winbond/core.h +++ b/drivers/staging/winbond/core.h @@ -3,6 +3,7 @@ #include <linux/wireless.h> #include <linux/types.h> +#include <linux/delay.h> #include "wbhal.h" #include "mto.h" |