mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
1. Update makefiles to add Nvidia source path 2. Change file permissions to 0644 3. Delete files with .orig extensions 4. Fix compilation issue due to enum-int mismatch Bug 4667769 Bug 4667981 Change-Id: I0df6f3073780daf6879c4165cd97fd62fd0a4b65 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3195602 GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Revanth Kumar Uppala <ruppala@nvidia.com> Reviewed-by: Ashutosh Jha <ajha@nvidia.com> Tested-by: Shobek Attupurath <sattupurath@nvidia.com>
13 lines
451 B
Makefile
13 lines
451 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
|
|
ifndef CONFIG_TEGRA_SYSTEM_TYPE_ACK
|
|
ifeq ($(shell expr \( $(VERSION) \) \* 10000 + \( $(PATCHLEVEL) \) \* 100 + \( $(SUBLEVEL) \) \<= 60500), 1)
|
|
ifneq ($(NV_OOT_REALTEK_RTL8822CE_SKIP_BUILD),y)
|
|
obj-m += rtl8822ce/
|
|
endif
|
|
endif
|
|
ifneq ($(NV_OOT_REALTEK_RTL8852CE_SKIP_BUILD),y)
|
|
obj-m += rtl8852ce/
|
|
endif
|
|
endif |