diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2011-04-01 09:50:54 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-04-04 21:37:05 -0700 |
commit | a58c616a9525a7094e950a64ec9232905a2858b5 (patch) | |
tree | 8b55f31ef02df2124272858a6f20b8790caedf74 /drivers/staging | |
parent | bed4ab7781e8600a7ebf4378a1b3f26d31517f57 (diff) | |
download | talos-obmc-linux-a58c616a9525a7094e950a64ec9232905a2858b5.tar.gz talos-obmc-linux-a58c616a9525a7094e950a64ec9232905a2858b5.zip |
staging: fix hv_mouse build, needs delay.h
Fix hv_mouse.c build, it needs delay.h:
drivers/staging/hv/hv_mouse.c:293: error: implicit declaration of function 'udelay'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/hv/hv_mouse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/hv/hv_mouse.c b/drivers/staging/hv/hv_mouse.c index cbe568616850..05b86cc09dba 100644 --- a/drivers/staging/hv/hv_mouse.c +++ b/drivers/staging/hv/hv_mouse.c @@ -14,6 +14,7 @@ */ #include <linux/init.h> #include <linux/module.h> +#include <linux/delay.h> #include <linux/device.h> #include <linux/workqueue.h> #include <linux/sched.h> |