mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
- Update driver to 3.1.65ab490.20240531-141726
- Add support for 8852CE
Bug 4915378
Change-Id: Ib3f695047ee306fd07db424239c985195619aad1
Signed-off-by: Shobek Attupurath <sattupurath@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3237077
(cherry picked from commit 3d15bb40b5)
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3233099
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
Reviewed-by: Ashutosh Jha <ajha@nvidia.com>
16 lines
296 B
Makefile
16 lines
296 B
Makefile
ifneq ($(KERNELRELEASE),)
|
|
obj-m := rtk_btusb.o
|
|
rtk_btusb-y = rtk_coex.o rtk_misc.o rtk_bt.o
|
|
else
|
|
PWD := $(shell pwd)
|
|
KVER := $(shell uname -r)
|
|
KDIR := /lib/modules/$(KVER)/build
|
|
|
|
all:
|
|
$(MAKE) -C $(KDIR) M=$(PWD) modules
|
|
|
|
clean:
|
|
rm -rf *.o *.mod.c *.mod.o *.ko *.symvers *.order *.a
|
|
|
|
endif
|