summaryrefslogtreecommitdiffstats
path: root/src/soc/qualcomm/sc7280
diff options
context:
space:
mode:
authorKshitiz Godara <quic_kgodara@quicinc.com>2022-06-23 10:20:38 +0530
committerFelix Held <felix-coreboot@felixheld.de>2022-06-24 13:26:54 +0000
commitb53ef2285473e7784a3ab6b5919d5e584ccdb58e (patch)
tree60dec34e6306ff47ea626feeec7bd4bc7e0c4f1b /src/soc/qualcomm/sc7280
parent753de9a452eacf1cb241af90b5d40af95e826991 (diff)
downloadcoreboot-b53ef2285473e7784a3ab6b5919d5e584ccdb58e.tar.gz
coreboot-b53ef2285473e7784a3ab6b5919d5e584ccdb58e.tar.bz2
coreboot-b53ef2285473e7784a3ab6b5919d5e584ccdb58e.zip
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>
Diffstat (limited to 'src/soc/qualcomm/sc7280')
-rw-r--r--src/soc/qualcomm/sc7280/soc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7280/soc.c b/src/soc/qualcomm/sc7280/soc.c
index 2407439b0b4d..c99abdc28701 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,
};