diff options
author | Laura Abbott <labbott@redhat.com> | 2017-05-08 18:58:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-08 20:15:14 -0400 |
commit | 056d16b2141d66611437fa12c2016c1c99cd7e3d (patch) | |
tree | baa8abfad5efbad494683395bc00a3857ad5e9de | |
parent | 7f80f513588dac3d9cbf886a3f2f6354d821695e (diff) |
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/1488920133-27229-15-git-send-email-labbott@redhat.com
Signed-off-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-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 @@ | |||
16 | 16 | ||
17 | #include <linux/device.h> | 17 | #include <linux/device.h> |
18 | #include <linux/genalloc.h> | 18 | #include <linux/genalloc.h> |
19 | #include <linux/mm.h> | ||
19 | #include <linux/sram.h> | 20 | #include <linux/sram.h> |
20 | 21 | ||
21 | #include <asm/cacheflush.h> | 22 | #include <asm/set_memory.h> |
22 | 23 | ||
23 | #include "sram.h" | 24 | #include "sram.h" |
24 | 25 | ||