diff options
author | Rick Chen | 2019-08-28 18:46:05 +0800 |
---|---|---|
committer | Andes | 2019-09-03 09:31:03 +0800 |
commit | abd858e5754c0f1e71aa86abde049d9ee81fda3e (patch) | |
tree | edf25aa2fe914ef4f51435a94ad1ff2255b51233 /drivers/cache | |
parent | 4d0140ee1aa02c702846f47fe986a19ecc4318a6 (diff) |
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.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/cache/sandbox_cache.c b/drivers/cache/sandbox_cache.c index 14cc6b0c0ac..9050c4cf340 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[] = { |