aboutsummaryrefslogtreecommitdiff
path: root/src/blocks/ram.c
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-09-08 13:07:22 +0200
committerFederico Angelilli <code@fedang.net>2024-09-08 13:07:22 +0200
commit43238419974e599a84f17b5faa8fb52401bdfe90 (patch)
tree6b27b61d081e4f4c8399b3caf8551d1ba75adf1e /src/blocks/ram.c
parent6d0ce31b0ae5df97d4a340c54b66d95598b336a4 (diff)
Refactor config parsing
Diffstat (limited to 'src/blocks/ram.c')
-rw-r--r--src/blocks/ram.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/blocks/ram.c b/src/blocks/ram.c
deleted file mode 100644
index 2190b20..0000000
--- a/src/blocks/ram.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "info.h"
-
-static bool block_ram_apply(block_t *block, void *result)
-{
- return true;
-}
-
-static const config_entry_t block_ram_entries[] = {
- { "text", CONFIG_STRING, offsetof(block_t, text.text) },
- { "text-color", CONFIG_COLOR, offsetof(block_t, text.text_color) },
- { "text-size", CONFIG_INT, offsetof(block_t, text.text_size) },
- { 0 },
-};
-
-const config_block_t block_ram_info = {
- .type_name = "ram",
- .type_size = 0,
- .base = { 0 },
- .entries = block_ram_entries,
- .apply = block_ram_apply,
-};
-