mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
a05d078169
If we have the struct pnp_dev available, we can use dev_info(), dev_err(), etc., to give a little more information and consistency. [akpm@linux-foundation.org: fix warning] Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Cc: Adam Belay <ambx1@neo.rr.com> Cc: Len Brown <lenb@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
311 B
Makefile
13 lines
311 B
Makefile
#
|
|
# Makefile for the Linux Plug-and-Play Support.
|
|
#
|
|
|
|
obj-y := core.o card.o driver.o resource.o manager.o support.o interface.o quirks.o system.o
|
|
|
|
obj-$(CONFIG_PNPACPI) += pnpacpi/
|
|
obj-$(CONFIG_PNPBIOS) += pnpbios/
|
|
obj-$(CONFIG_ISAPNP) += isapnp/
|
|
|
|
ifeq ($(CONFIG_PNP_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|