diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-16 23:23:25 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-16 23:23:25 -0400 |
commit | 2b9c85a41b190c6843000f18b922946bd6bd3bed (patch) | |
tree | bc3ea7a222fbe2bbfe6da37586631b504dd70a50 /apps/plugin.c | |
parent | 805f5316325eea37a90b5299b4a3ba601077f0a5 (diff) |
storage: Clean up storage_xxxx macros when STORAGE_MULTI is not set
Change-Id: I1652eac1743f4b8b84da08ea5a6d04ac7e17e21d
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7d40a8db4f..4293d861f9 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -421,8 +421,8 @@ static const struct plugin_api rockbox_api = { read_line, settings_parseline, storage_sleep, - storage_spin, - storage_spindown, + STORAGE_FUNCTION(spin), + STORAGE_FUNCTION(spindown), #if USING_STORAGE_CALLBACK register_storage_idle_func, unregister_storage_idle_func, |