summaryrefslogtreecommitdiff
path: root/drivers/cache
diff options
context:
space:
mode:
authorRick Chen <rick@andestech.com>2019-08-28 13:46:05 +0300
committerAndes <uboot@andestech.com>2019-09-03 04:31:03 +0300
commitabd858e5754c0f1e71aa86abde049d9ee81fda3e (patch)
treeedf25aa2fe914ef4f51435a94ad1ff2255b51233 /drivers/cache
parent4d0140ee1aa02c702846f47fe986a19ecc4318a6 (diff)
downloadu-boot-abd858e5754c0f1e71aa86abde049d9ee81fda3e.tar.xz
dm: cache: Add enable and disable ops for sandbox and test
Add cache enable and disable ops for test coverage. Signed-off-by: Rick Chen <rick@andestech.com> Cc: KC Lin <kclin@andestech.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/cache')
-rw-r--r--drivers/cache/sandbox_cache.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/cache/sandbox_cache.c b/drivers/cache/sandbox_cache.c
index 14cc6b0c0a..9050c4cf34 100644
--- a/drivers/cache/sandbox_cache.c
+++ b/drivers/cache/sandbox_cache.c
@@ -17,8 +17,21 @@ static int sandbox_get_info(struct udevice *dev, struct cache_info *info)
return 0;
}
+static int sandbox_enable(struct udevice *dev)
+{
+ return 0;
+}
+
+static int snadbox_disable(struct udevice *dev)
+{
+ return 0;
+}
+
+
static const struct cache_ops sandbox_cache_ops = {
.get_info = sandbox_get_info,
+ .enable = sandbox_enable,
+ .disable = snadbox_disable,
};
static const struct udevice_id sandbox_cache_ids[] = {