mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
Remove unused module drivers from build as the drivers
are integrated with client driver as single module.
Drivers which are getting removed are:
clk-group
device-group
reset-group
These drivers was restored due to packaging error in
release branch which is fixed now.
Change-Id: I094e62ae2a83eb7816c98bf113c5a74f2636a41f
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2929127
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
25 lines
754 B
Makefile
25 lines
754 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
LINUX_VERSION := $(shell expr $(VERSION) \* 256 + $(PATCHLEVEL))
|
|
LINUX_VERSION_6_2 := $(shell expr 6 \* 256 + 2)
|
|
|
|
# capture-ivc is currently broken for Linux v6.2 and so skip for Linux v6.2+
|
|
ifeq ($(shell test $(LINUX_VERSION) -lt $(LINUX_VERSION_6_2); echo $$?),0)
|
|
obj-m += capture-ivc.o
|
|
endif
|
|
obj-m += ivc-bus.o
|
|
obj-m += camchar.o
|
|
obj-m += camera-diagnostics.o
|
|
obj-m += rtcpu-debug.o
|
|
obj-m += hsp-mailbox-client.o
|
|
|
|
tegra-camera-rtcpu-objs := clk-group.o \
|
|
device-group.o \
|
|
reset-group.o \
|
|
rtcpu-monitor.o \
|
|
tegra-camera-rtcpu-base.o \
|
|
tegra-rtcpu-trace.o
|
|
|
|
obj-m += tegra-camera-rtcpu.o
|