forked from Gnurou/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BACKPORT: FROMGIT: virtio: fix build for configs without dma-bufs
Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: David Stevens <stevensd@chromium.org> Link: http://patchwork.freedesktop.org/patch/msgid/20200819031011.310180-1-stevensd@chromium.org Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> (cherry picked from commit 9fe2f89 git://anongit.freedesktop.org/drm/drm-misc drm-misc-next) Conflicts: trivial rebase conflicts in with virtwl build config BUG=b:142423916 TEST=builds Change-Id: If6f93dcdd52db5d02142ad13d872909d3d782d80 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/kernel/+/2405752 Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Guenter Roeck <groeck@chromium.org> Commit-Queue: Guenter Roeck <groeck@chromium.org> Tested-by: Guenter Roeck <groeck@chromium.org>
- Loading branch information
David Stevens
authored and
Commit Bot
committed
Sep 13, 2020
1 parent
4e561eb
commit 7c5e019
Showing
4 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-$(CONFIG_VIRTIO) += virtio.o virtio_ring.o virtio_dma_buf.o | ||
obj-$(CONFIG_VIRTIO) += virtio.o virtio_ring.o | ||
obj-$(CONFIG_VIRTIO_MMIO) += virtio_mmio.o | ||
obj-$(CONFIG_VIRTIO_PCI) += virtio_pci.o | ||
virtio_pci-y := virtio_pci_modern.o virtio_pci_common.o | ||
virtio_pci-$(CONFIG_VIRTIO_PCI_LEGACY) += virtio_pci_legacy.o | ||
obj-$(CONFIG_VIRTIO_BALLOON) += virtio_balloon.o | ||
obj-$(CONFIG_VIRTIO_INPUT) += virtio_input.o | ||
obj-$(CONFIG_VIRTIO_WL) += virtio_wl.o | ||
obj-$(CONFIG_VIRTIO_DMA_SHARED_BUFFER) += virtio_dma_buf.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters