diff options
author | Kshitiz Godara <quic_kgodara@quicinc.com> | 2022-06-23 10:20:38 +0530 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-06-24 13:26:54 +0000 |
commit | b53ef2285473e7784a3ab6b5919d5e584ccdb58e (patch) | |
tree | 60dec34e6306ff47ea626feeec7bd4bc7e0c4f1b | |
parent | 753de9a452eacf1cb241af90b5d40af95e826991 (diff) |
sc7180/sc7280: Add missing set_resources
Added missing set_resources function to avoid error messages in boot up
logs.
BUG=b:230576402
TEST=Validated on qualcomm sc7280 development board
Signed-off-by: Kshitiz Godara <quic_kgodara@quicinc.com>
Change-Id: Ie0a5bd345486293ce07e586a423d53740ad377f1
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65331
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
-rw-r--r-- | src/soc/qualcomm/sc7180/soc.c | 1 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7280/soc.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7180/soc.c b/src/soc/qualcomm/sc7180/soc.c index c78121ea71..93e36e2a6a 100644 --- a/src/soc/qualcomm/sc7180/soc.c +++ b/src/soc/qualcomm/sc7180/soc.c @@ -29,6 +29,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/qualcomm/sc7280/soc.c b/src/soc/qualcomm/sc7280/soc.c index 2407439b0b..c99abdc287 100644 --- a/src/soc/qualcomm/sc7280/soc.c +++ b/src/soc/qualcomm/sc7280/soc.c @@ -36,6 +36,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, }; |