diff options
| author | Laura Abbott <[email protected]> | 2017-05-08 22:58:38 +0000 |
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2017-05-09 00:15:14 +0000 |
| commit | 056d16b2141d66611437fa12c2016c1c99cd7e3d (patch) | |
| tree | baa8abfad5efbad494683395bc00a3857ad5e9de /drivers/misc/sram-exec.c | |
| parent | alsa: use set_memory.h header (diff) | |
| download | kernel-056d16b2141d66611437fa12c2016c1c99cd7e3d.tar.gz kernel-056d16b2141d66611437fa12c2016c1c99cd7e3d.zip | |
drivers/misc/sram-exec.c: use set_memory.h header
set_memory_* functions have moved to set_memory.h. Switch to this
explicitly.
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Laura Abbott <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
Diffstat (limited to 'drivers/misc/sram-exec.c')
| -rw-r--r-- | drivers/misc/sram-exec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/sram-exec.c b/drivers/misc/sram-exec.c index ac522417c462..3d528a13b8fc 100644 --- a/drivers/misc/sram-exec.c +++ b/drivers/misc/sram-exec.c @@ -16,9 +16,10 @@ #include <linux/device.h> #include <linux/genalloc.h> +#include <linux/mm.h> #include <linux/sram.h> -#include <asm/cacheflush.h> +#include <asm/set_memory.h> #include "sram.h" |
