diff options
author | Laura Abbott <labbott@redhat.com> | 2017-04-05 09:24:48 +1000 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2017-04-07 17:40:05 +1000 |
commit | fd4ee79931a606d839f52d40d60d4646c5933a81 (patch) | |
tree | 5357af296f476b941355dfcdc619152247aff5cf /drivers/misc | |
parent | ba1e61661781641efdf4a84bdd693d71d2b8a575 (diff) | |
download | linux-next-fd4ee79931a606d839f52d40d60d4646c5933a81.tar.gz |
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>
Diffstat (limited to 'drivers/misc')
-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" |