Makefile (c9f289701540baeef9ac7c9977d67a7259f404db) | Makefile (c9b9f5f8c0f3cdb893cb86c168cdaa3aa5ed7278) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the Linux kernel device drivers. 4# 5# 15 Sep 2000, Christoph Hellwig <hch@infradead.org> 6# Rewritten to use lists instead of if-statements. 7# 8 --- 28 unchanged lines hidden (view full) --- 37# Many drivers will want to use DMA so this has to be made available 38# really early. 39obj-$(CONFIG_DMADEVICES) += dma/ 40 41# SOC specific infrastructure drivers. 42obj-y += soc/ 43 44obj-$(CONFIG_VIRTIO) += virtio/ | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for the Linux kernel device drivers. 4# 5# 15 Sep 2000, Christoph Hellwig <hch@infradead.org> 6# Rewritten to use lists instead of if-statements. 7# 8 --- 28 unchanged lines hidden (view full) --- 37# Many drivers will want to use DMA so this has to be made available 38# really early. 39obj-$(CONFIG_DMADEVICES) += dma/ 40 41# SOC specific infrastructure drivers. 42obj-y += soc/ 43 44obj-$(CONFIG_VIRTIO) += virtio/ |
45obj-$(CONFIG_VDPA) += vdpa/ |
|
45obj-$(CONFIG_XEN) += xen/ 46 47# regulators early, since some subsystems rely on them to initialize 48obj-$(CONFIG_REGULATOR) += regulator/ 49 50# reset controllers early, since gpu drivers might rely on them to initialize 51obj-$(CONFIG_RESET_CONTROLLER) += reset/ 52 --- 136 unchanged lines hidden --- | 46obj-$(CONFIG_XEN) += xen/ 47 48# regulators early, since some subsystems rely on them to initialize 49obj-$(CONFIG_REGULATOR) += regulator/ 50 51# reset controllers early, since gpu drivers might rely on them to initialize 52obj-$(CONFIG_RESET_CONTROLLER) += reset/ 53 --- 136 unchanged lines hidden --- |