Files
rockchip-kernel/include/linux/platform_data/sram.h
Russ Dill 6e701bfc17 misc: SRAM: Add option to map SRAM to allow code execution
This is necessary for platforms that use SRAM to execute suspend/resume stubs.

Signed-off-by: Russ Dill <Russ.Dill@ti.com>
2013-11-21 13:39:20 +08:00

9 lines
100 B
C

#ifndef _LINUX_SRAM_H
#define _LINUX_SRAM_H
struct sram_platform_data {
bool map_exec;
};
#endif