From: Ian Abbott Date: Fri, 8 Nov 2013 15:03:23 +0000 (+0000) Subject: staging: comedi: add a couple of #includes to comedidev.h X-Git-Tag: next-20131128~9^2~87^2~102 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ab3cb2e30ec8223777f6ea4696ba24191ffc5c72;p=karo-tx-linux.git staging: comedi: add a couple of #includes to comedidev.h Two structures defined in "comedidev.h" have an element of type `spinlock_t`, so add `#include ` to declare it. One structure has an element of type `struct mutex` so add `#include ` to declare it. Signed-off-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/comedidev.h b/drivers/staging/comedi/comedidev.h index 38a4eebcd818..e2432471c390 100644 --- a/drivers/staging/comedi/comedidev.h +++ b/drivers/staging/comedi/comedidev.h @@ -20,6 +20,8 @@ #define _COMEDIDEV_H #include +#include +#include #include "comedi.h"