diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-04-07 13:51:13 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2020-04-10 12:00:11 +0000 |
commit | 4d319c3d0965042ae6b225d4cc391e00789d7565 (patch) | |
tree | 0ee30a622da4c1d54e74df0443450335da11f31a /src/ec | |
parent | 7eed98ac88f15b6b81695275858da7cd5c8d7a98 (diff) |
src/ec: Add missing "set_resources = noop_set_resources"
Change-Id: I4acfb9d9911e251a494b6d35d76226c06e7858d6
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40256
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/compal/ene932/ec.c | 1 | ||||
-rw-r--r-- | src/ec/quanta/ene_kb3940q/ec.c | 1 | ||||
-rw-r--r-- | src/ec/quanta/it8518/ec.c | 1 | ||||
-rw-r--r-- | src/ec/roda/it8518/ec.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/ec/compal/ene932/ec.c b/src/ec/compal/ene932/ec.c index 93d9154d83..f0d83a7c28 100644 --- a/src/ec/compal/ene932/ec.c +++ b/src/ec/compal/ene932/ec.c @@ -123,6 +123,7 @@ static void ene932_init(struct device *dev) static struct device_operations ops = { .init = ene932_init, .read_resources = noop_read_resources, + .set_resources = noop_set_resources, }; static struct pnp_info pnp_dev_info[] = { diff --git a/src/ec/quanta/ene_kb3940q/ec.c b/src/ec/quanta/ene_kb3940q/ec.c index 4959db1312..db1a04bf23 100644 --- a/src/ec/quanta/ene_kb3940q/ec.c +++ b/src/ec/quanta/ene_kb3940q/ec.c @@ -133,6 +133,7 @@ static void ene_kb3940q_init(struct device *dev) static struct device_operations ops = { .init = ene_kb3940q_init, .read_resources = noop_read_resources, + .set_resources = noop_set_resources, }; static struct pnp_info pnp_dev_info[] = { diff --git a/src/ec/quanta/it8518/ec.c b/src/ec/quanta/it8518/ec.c index 9cb3755f2f..bd82ecc5fe 100644 --- a/src/ec/quanta/it8518/ec.c +++ b/src/ec/quanta/it8518/ec.c @@ -147,6 +147,7 @@ static void it8518_init(struct device *dev) static struct device_operations ops = { .init = it8518_init, .read_resources = noop_read_resources, + .set_resources = noop_set_resources, }; static struct pnp_info pnp_dev_info[] = { diff --git a/src/ec/roda/it8518/ec.c b/src/ec/roda/it8518/ec.c index f4a27588dc..07b61f5154 100644 --- a/src/ec/roda/it8518/ec.c +++ b/src/ec/roda/it8518/ec.c @@ -36,6 +36,7 @@ static void it8518_init(struct device *dev) static struct device_operations ops = { .init = it8518_init, .read_resources = noop_read_resources, + .set_resources = noop_set_resources, }; static struct pnp_info pnp_dev_info[] = { |