diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2015-08-05 17:04:01 -0300 |
commit | 57f0f512b273f60d52568b8c6b77e17f5636edc0 (patch) | |
tree | 5e910f0e82173f4ef4f51111366a3f1299037a7b /drivers/pnp/Makefile |
Initial import
Diffstat (limited to 'drivers/pnp/Makefile')
-rw-r--r-- | drivers/pnp/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/pnp/Makefile b/drivers/pnp/Makefile new file mode 100644 index 000000000..bfba893cb --- /dev/null +++ b/drivers/pnp/Makefile @@ -0,0 +1,14 @@ +# +# Makefile for the Linux Plug-and-Play Support. +# + +obj-y := pnp.o + +pnp-y := core.o card.o driver.o resource.o manager.o support.o interface.o quirks.o + +obj-$(CONFIG_PNPACPI) += pnpacpi/ +obj-$(CONFIG_PNPBIOS) += pnpbios/ +obj-$(CONFIG_ISAPNP) += isapnp/ + +# pnp_system_init goes after pnpacpi/pnpbios init +pnp-y += system.o |