diff options
author | Mitchel Humpherys <mitchelh@codeaurora.org> | 2015-10-12 18:13:06 -0700 |
---|---|---|
committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-22 11:14:21 -0700 |
commit | e2dc9b365255804d272a7c50c4e73384e5a83453 (patch) | |
tree | a563f9f0eed9946ec8cb00b454b9681918b7228f /include | |
parent | 803fdf1498e3545a553c76c6170c8c3489851198 (diff) |
msm: secure_buffer: Add missing include
secure_buffer.h makes use of the scatterlist structure, but doesn't
include the header file that defines it. Until now we've been getting
lucky that all users of secure_buffer.h have been including the
scatterlist header file themselves, but this might not always be the
case. Add the missing include.
Change-Id: If7598c26a1ef3551132c6eb62ac9bd6d447654d0
Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/soc/qcom/secure_buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/soc/qcom/secure_buffer.h b/include/soc/qcom/secure_buffer.h index 2f97c59234d5..115e95a4e2a8 100644 --- a/include/soc/qcom/secure_buffer.h +++ b/include/soc/qcom/secure_buffer.h @@ -15,6 +15,7 @@ #ifndef __MSM_SECURE_BUFFER_H__ #define __MSM_SECURE_BUFFER_H__ +#include <linux/scatterlist.h> #define VMID_HLOS 0x3 #define VMID_CP_TOUCH 0x8 |