]> git.ozlabs.org Git - petitboot/blobdiff - lib/pb-config/storage.h
pb-config: Move config storage modules to "platform" modules in discover code
[petitboot] / lib / pb-config / storage.h
diff --git a/lib/pb-config/storage.h b/lib/pb-config/storage.h
deleted file mode 100644 (file)
index 5b4af56..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef STORAGE_H
-#define STORAGE_H
-
-#include <stdbool.h>
-
-struct config;
-
-struct config_storage {
-       int     (*load)(struct config_storage *st, struct config *config);
-       int     (*save)(struct config_storage *st, struct config *config);
-};
-
-struct config_storage *create_powerpc_nvram_storage(void *ctx);
-struct config_storage *create_test_storage(void *ctx);
-struct config_storage *create_null_storage(void *ctx);
-
-#endif /* STORAGE_H */
-