Merge tag 'LA.UM.9.14.r1-19500-LAHAINA.QSSI12.0' of https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/datarmnet-ext into android12-5.4-lahaina

"LA.UM.9.14.r1-19500-LAHAINA.QSSI12.0"

* tag 'LA.UM.9.14.r1-19500-LAHAINA.QSSI12.0' of https://git.codelinaro.org/clo/la/platform/vendor/qcom/opensource/datarmnet-ext:
  rmnet_shs: compilation fix for ks sync path

Change-Id: I38534676d00d31c6b0e7bc9d00881aea92d55d52
This commit is contained in:
Michael Bestas 2022-05-19 00:39:33 +03:00
commit 2cef6c9e2e
No known key found for this signature in database
GPG Key ID: CC95044519BE6669

View File

@ -7,6 +7,10 @@ ifeq ($(call is-board-platform-in-list, $(RMNET_SHS_DLKM_PLATFORMS_LIST)),true)
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS) include $(CLEAR_VARS)
ifeq ($(BOARD_COMMON_DIR),)
BOARD_COMMON_DIR := device/qcom/common
endif
LOCAL_CFLAGS := -Wno-macro-redefined -Wno-unused-function -Wall -Werror LOCAL_CFLAGS := -Wno-macro-redefined -Wno-unused-function -Wall -Werror
LOCAL_CLANG :=true LOCAL_CLANG :=true
@ -25,7 +29,7 @@ LOCAL_SRC_FILES := \
#path from build top to the core directory #path from build top to the core directory
RMNET_CORE_PATH := vendor/qcom/opensource/datarmnet/core RMNET_CORE_PATH := vendor/qcom/opensource/datarmnet/core
DLKM_DIR := $(TOP)/device/qcom/common/dlkm DLKM_DIR := $(TOP)/$(BOARD_COMMON_DIR)/dlkm
#absolute path to the build directory. Can't use $(TOP) here since #absolute path to the build directory. Can't use $(TOP) here since
#that resolves to ., and we pass this to Kbuild, where . is different #that resolves to ., and we pass this to Kbuild, where . is different
RMNET_CORE_INC_DIR := $(shell pwd)/$(RMNET_CORE_PATH) RMNET_CORE_INC_DIR := $(shell pwd)/$(RMNET_CORE_PATH)