mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
1. Update to VERSION "3.1.6fd4e69.20220818-105856" 2. Update the fw file for RTL8851A, RTL8852B 3. rtk_coex: Support vendor cmd for reporting the profile and state of each connection 4. rtk_bt/rtk_misc/rtk_coex/hci_ldisc/btrtksdio: fix the issues by coverity scan and Sparse build 5. rtk_bt: Add shutdown wakeup and fix failure of usb enumeration 6. rtk_bt: Add marco to distinguish powerkey or anykey wakeup Bug 3528414 Change-Id: Ia44029f189f8fc2cd62160dbc763c6e91e8cd9b4 Signed-off-by: Sushil Singh <sushilkumars@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2876940 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com> Tested-by: Revanth Kumar Uppala <ruppala@nvidia.com> Reviewed-by: Revanth Kumar Uppala <ruppala@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
23 lines
458 B
Makefile
23 lines
458 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CONFIG_BTUSB_AUTOSUSPEND = n
|
|
CONFIG_BTUSB_WAKEUP_HOST = n
|
|
CONFIG_BTCOEX = y
|
|
|
|
ifeq ($(CONFIG_BTUSB_AUTOSUSPEND), y)
|
|
EXTRA_CFLAGS += -DCONFIG_BTUSB_AUTOSUSPEND
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BTUSB_WAKEUP_HOST), y)
|
|
EXTRA_CFLAGS += -DCONFIG_BTUSB_WAKEUP_HOST
|
|
endif
|
|
|
|
ifeq ($(CONFIG_BTCOEX), y)
|
|
EXTRA_CFLAGS += -DCONFIG_BTCOEX
|
|
endif
|
|
|
|
obj-m := rtk_btusb.o
|
|
rtk_btusb-objs := rtk_coex.o \
|
|
rtk_misc.o \
|
|
rtk_bt.o
|