summaryrefslogtreecommitdiffstats
path: root/common/state
diff options
context:
space:
mode:
Diffstat (limited to 'common/state')
-rw-r--r--common/state/state.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/common/state/state.c b/common/state/state.c
index 878fd1b0fb..121ba0c6d3 100644
--- a/common/state/state.c
+++ b/common/state/state.c
@@ -571,7 +571,7 @@ struct state *state_new_from_node(struct device_node *node, char *path,
struct state *state;
int ret = 0;
const char *backend_type;
- const char *storage_type;
+ const char *storage_type = NULL;
const char *alias;
uint32_t stridesize;
@@ -616,12 +616,7 @@ struct state *state_new_from_node(struct device_node *node, char *path,
stridesize = 0;
}
- ret = of_property_read_string(node, "backend-storage-type",
- &storage_type);
- if (ret) {
- storage_type = NULL;
- dev_info(&state->dev, "No backend-storage-type found, using default.\n");
- }
+ of_property_read_string(node, "backend-storage-type", &storage_type);
ret = state_format_init(state, backend_type, node, alias);
if (ret)