Replace DEVICE_NOOP with noop_(set|read)_resources

`.read_resources` and `.set_resources` are the only two device
operations that are considered mandatory. Other function pointers
can be left NULL. Having dedicated no-op implementations for the
two mandatory fields should stop the leaking of no-op pointers to
other fields.

Change-Id: I6469a7568dc24317c95e238749d878e798b0a362
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/40207
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Reviewed-by: Edward O'Callaghan <quasisec@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Nico Huber 2020-04-05 14:05:24 +02:00 committed by Angel Pons
commit 2f8ba69b0e
80 changed files with 150 additions and 150 deletions

View file

@ -42,8 +42,8 @@ static void soc_init(struct device *dev)
}
static struct device_operations soc_ops = {
.read_resources = DEVICE_NOOP,
.set_resources = DEVICE_NOOP,
.read_resources = noop_read_resources,
.set_resources = noop_set_resources,
.enable_resources = soc_enable,
.init = soc_init,
};

View file

@ -51,7 +51,7 @@ static void soc_read_resources(struct device *dev)
static struct device_operations soc_ops = {
.read_resources = soc_read_resources,
.set_resources = DEVICE_NOOP,
.set_resources = noop_set_resources,
};
static void enable_tegra210_dev(struct device *dev)