diff --git a/drivers/Makefile b/drivers/Makefile index cd0c38a0..6610e4b0 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -4,6 +4,8 @@ LINUXINCLUDE += -I$(srctree.nvidia-oot)/include obj-m += block/tegra_virt_storage/ +obj-m += c2c/ +obj-m += clink/ obj-m += crypto/ obj-m += devfreq/ obj-m += dma/ diff --git a/drivers/c2c/Makefile b/drivers/c2c/Makefile new file mode 100644 index 00000000..697b11cc --- /dev/null +++ b/drivers/c2c/Makefile @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. + +# NOTE: Do not change or add anything in this makefile. +# The source code and makefile rules are copied from the subdirectory +# drivers/c2c of nvidia-grace folder. This file is just place-holder +# for empty makefile to avoid any build issue when copy is not done +# from command line and building the tree independent of source copy. diff --git a/drivers/clink/Makefile b/drivers/clink/Makefile new file mode 100644 index 00000000..e46b30a4 --- /dev/null +++ b/drivers/clink/Makefile @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. + +# NOTE: Do not change or add anything in this makefile. +# The source code and makefile rules are copied from the subdirectory +# drivers/clink of nvidia-grace folder. This file is just place-holder +# for empty makefile to avoid any build issue when copy is not done +# from command line and building the tree independent of source copy.