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>
diff --git a/src/soc/qualcomm/sc7180/soc.c b/src/soc/qualcomm/sc7180/soc.c
index c78121e..93e36e2 100644
--- a/src/soc/qualcomm/sc7180/soc.c
+++ b/src/soc/qualcomm/sc7180/soc.c
@@ -29,6 +29,7 @@
 
 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 2407439..c99abdc 100644
--- a/src/soc/qualcomm/sc7280/soc.c
+++ b/src/soc/qualcomm/sc7280/soc.c
@@ -36,6 +36,7 @@
 
 static struct device_operations soc_ops = {
 	.read_resources = soc_read_resources,
+	.set_resources = noop_set_resources,
 	.init = soc_init,
 };