Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a6f6879b authored by Komal Maheshwari's avatar Komal Maheshwari
Browse files

datarmnet: compilation fix for ks sync path

Change-Id: Iae1161d91e6abaa0c307fde978824d3f46820ac9
parent d071e6b4
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -10,6 +10,10 @@ ifeq ($(call is-board-platform-in-list, $(RMNET_CORE_DLKM_PLATFORMS_LIST)),true)
LOCAL_PATH := $(call my-dir)
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_CLANG :=true

@@ -30,7 +34,7 @@ LOCAL_SRC_FILES := \
	wda_qmi.c

RMNET_BLD_DIR := ../../vendor/qcom/opensource/datarmnet/core
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
DLKM_DIR := $(TOP)/$(BOARD_COMMON_DIR)/dlkm

KBUILD_OPTIONS := $(RMNET_BLD_DIR)

@@ -51,7 +55,7 @@ LOCAL_SRC_FILES := \
	rmnet_ctl_ipa.c

RMNET_BLD_DIR := ../../vendor/qcom/opensource/datarmnet/core
DLKM_DIR := $(TOP)/device/qcom/common/dlkm
DLKM_DIR := $(TOP)/$(BOARD_COMMON_DIR)/dlkm

KBUILD_OPTIONS := $(RMNET_BLD_DIR)