mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 09:21:35 +00:00
47 lines
1.5 KiB
Diff
47 lines
1.5 KiB
Diff
From 182d6d8638577988f71d9a2f83703b82c8f86410 Mon Sep 17 00:00:00 2001
|
|
From: Hariharan K <quic_harihk@quicinc.com>
|
|
Date: Mon, 6 Nov 2023 11:07:12 +0530
|
|
Subject: [PATCH] drivers: soc: qcom: Add support for QCOM_SOC_NETSTANDBY
|
|
|
|
Adding the build support for netstandby feature.
|
|
|
|
Change-Id: I11ff7784dac54fd26a0e703b5825a98df2978bd5
|
|
Signed-off-by: Hariharan K <quic_harihk@quicinc.com>
|
|
---
|
|
drivers/soc/qcom/Kconfig | 6 ++++++
|
|
drivers/soc/qcom/Makefile | 1 +
|
|
2 files changed, 7 insertions(+)
|
|
|
|
diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
|
|
index 0fba72407d10..a83510d6ea91 100644
|
|
--- a/drivers/soc/qcom/Kconfig
|
|
+++ b/drivers/soc/qcom/Kconfig
|
|
@@ -271,6 +271,12 @@ config IPQ_REG_UPDATE
|
|
help
|
|
Generic driver to configure required registers
|
|
|
|
+config QCOM_SOC_NETSTANDBY
|
|
+ bool "Qualcomm Technologies, Inc. SoC network standby driver"
|
|
+ depends on ARCH_QCOM
|
|
+ help
|
|
+ SoC network standby driver for ErP support
|
|
+
|
|
config IPQ_DEBUG
|
|
bool "QTI, Subsystem IPQ debug driver"
|
|
depends on ARCH_QCOM
|
|
diff --git a/drivers/soc/qcom/Makefile b/drivers/soc/qcom/Makefile
|
|
index 05f81d77adc4..df4913e9063a 100644
|
|
--- a/drivers/soc/qcom/Makefile
|
|
+++ b/drivers/soc/qcom/Makefile
|
|
@@ -32,6 +32,7 @@ obj-$(CONFIG_QCOM_KRYO_L2_ACCESSORS) += kryo-l2-accessors.o
|
|
obj-$(CONFIG_QCOM_ICC_BWMON) += icc-bwmon.o
|
|
obj-$(CONFIG_QCOM_DCC_V2) += dcc_v2.o
|
|
obj-$(CONFIG_IPQ_REG_UPDATE) += ipq_reg_update.o
|
|
+obj-$(CONFIG_QCOM_SOC_NETSTANDBY) += netstandby.o
|
|
obj-$(CONFIG_IPQ_DEBUG) += ipq-debug.o
|
|
obj-$(CONFIG_MSM_RPM_LOG) += rpm_log.o
|
|
obj-$(CONFIG_QTI_TZ_LOG) += tz_log.o
|
|
--
|
|
2.34.1
|
|
|