diff options
author | Felipe Balbi <[email protected]> | 2015-08-06 11:23:32 -0500 |
---|---|---|
committer | Felipe Balbi <[email protected]> | 2015-08-06 11:23:32 -0500 |
commit | 4a1e9211809d4130fe23cad1bea222222d6e94f4 (patch) | |
tree | e193329a6664a1291b2d261e8a8e5b7b2dcd86e3 | |
parent | b0a688ddcc5015eb26000c63841db7c46cfb380a (diff) |
usb: gadget: f_mass_storage: add mising <linux/uaccess.h>
<linux/uaccess.h> was originally being pulled
indirectly through some other header, however
it's not anymore, so we need to include it
directly
Reported-by: Jim Davis <[email protected]>
Suggested-by: Alan Stern <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
-rw-r--r-- | drivers/usb/gadget/function/f_mass_storage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/function/f_mass_storage.c b/drivers/usb/gadget/function/f_mass_storage.c index 11a7f5aa955b..a6eb537d7768 100644 --- a/drivers/usb/gadget/function/f_mass_storage.c +++ b/drivers/usb/gadget/function/f_mass_storage.c @@ -214,6 +214,7 @@ #include <linux/string.h> #include <linux/freezer.h> #include <linux/module.h> +#include <linux/uaccess.h> #include <linux/usb/ch9.h> #include <linux/usb/gadget.h> |