summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/mediatek/mt8173/soc.c1
-rw-r--r--src/soc/mediatek/mt8183/soc.c1
-rw-r--r--src/soc/mediatek/mt8186/soc.c1
-rw-r--r--src/soc/mediatek/mt8192/soc.c1
-rw-r--r--src/soc/mediatek/mt8195/soc.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8173/soc.c b/src/soc/mediatek/mt8173/soc.c
index ef571303de..7a4eeb68a6 100644
--- a/src/soc/mediatek/mt8173/soc.c
+++ b/src/soc/mediatek/mt8173/soc.c
@@ -21,6 +21,7 @@ static void soc_init(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
+ .set_resources = noop_set_resources,
.init = soc_init,
};
diff --git a/src/soc/mediatek/mt8183/soc.c b/src/soc/mediatek/mt8183/soc.c
index 6bcd4d0e24..c2e7d26051 100644
--- a/src/soc/mediatek/mt8183/soc.c
+++ b/src/soc/mediatek/mt8183/soc.c
@@ -23,6 +23,7 @@ static void soc_init(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
+ .set_resources = noop_set_resources,
.init = soc_init,
};
diff --git a/src/soc/mediatek/mt8186/soc.c b/src/soc/mediatek/mt8186/soc.c
index 7686986e71..53e50654e6 100644
--- a/src/soc/mediatek/mt8186/soc.c
+++ b/src/soc/mediatek/mt8186/soc.c
@@ -32,6 +32,7 @@ static void soc_init(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
+ .set_resources = noop_set_resources,
.init = soc_init,
};
diff --git a/src/soc/mediatek/mt8192/soc.c b/src/soc/mediatek/mt8192/soc.c
index 006a212da9..cf1fe48c84 100644
--- a/src/soc/mediatek/mt8192/soc.c
+++ b/src/soc/mediatek/mt8192/soc.c
@@ -37,6 +37,7 @@ static void soc_init(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
+ .set_resources = noop_set_resources,
.init = soc_init,
};
diff --git a/src/soc/mediatek/mt8195/soc.c b/src/soc/mediatek/mt8195/soc.c
index 995aadc8db..cf9f412ae8 100644
--- a/src/soc/mediatek/mt8195/soc.c
+++ b/src/soc/mediatek/mt8195/soc.c
@@ -43,6 +43,7 @@ static void soc_init(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
+ .set_resources = noop_set_resources,
.init = soc_init,
};