[dev][bus][pci] move the pci driver out of platform/pc into generic space

No functional change.
This commit is contained in:
Travis Geiselbrecht
2020-03-07 18:17:36 -08:00
parent 5969063a52
commit a44bc7863d
7 changed files with 9 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
#include <stdlib.h>
#include <lk/compiler.h>
#include <platform.h>
#include <dev/pci.h>
#include <dev/bus/pci.h>
#include <lk/console_cmd.h>
/*

View File

@@ -3,6 +3,8 @@ LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_SRCS += \
$(LOCAL_DIR)/pci_tests.c
$(LOCAL_DIR)/pci_tests.c
MODULE_DEPS += dev/bus/pci
include make/module.mk