diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2016-11-15 22:23:01 +0300 |
---|---|---|
committer | Bart Van Assche <bart.vanassche@sandisk.com> | 2016-12-09 21:20:10 +0300 |
commit | 4323e65b79e587b2f5ba27e1bdd91b6b54aea6b2 (patch) | |
tree | a69c4ac167eca86fd00edc4aacc92bf2434de2b2 /drivers/target/sbp/sbp_target.c | |
parent | 09ce66aee7763686a22ab26fbe8a889e0cec64e9 (diff) | |
download | linux-4323e65b79e587b2f5ba27e1bdd91b6b54aea6b2.tar.xz |
sbp-target: Add an #include directive
usleep_range() is called from sbp_target.c. Hence include header
file <linux/delay.h>.
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Chris Boot <bootc@bootc.net>
Diffstat (limited to 'drivers/target/sbp/sbp_target.c')
-rw-r--r-- | drivers/target/sbp/sbp_target.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/target/sbp/sbp_target.c b/drivers/target/sbp/sbp_target.c index 6ca388eca33b..e5c3e5f827d0 100644 --- a/drivers/target/sbp/sbp_target.c +++ b/drivers/target/sbp/sbp_target.c @@ -28,6 +28,7 @@ #include <linux/string.h> #include <linux/configfs.h> #include <linux/ctype.h> +#include <linux/delay.h> #include <linux/firewire.h> #include <linux/firewire-constants.h> #include <scsi/scsi_proto.h> |