mirror of
				https://kernel.googlesource.com/pub/scm/linux/kernel/git/stable/linux-stable.git
				synced 2025-11-04 07:44:51 +10:00 
			
		
		
		
	This is cleanup mostly, nothing urgent.
I came up with it when looking at dynamic debug which can
enable pr_debug messages at runtime or boot param
for a specific module.
Advantages:
  - Any pnp code can make use of the moduleparam.h interface, the modules
    will show up as pnp.param.
  - Passing pnp.ddebug as kernel boot param will enable all pnp debug messages
    with my previous patch and CONFIG_DYNAMIC_DEBUG enabled.
Signed-off-by: Thomas Renninger <trenn@suse.de>
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
		
	
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			331 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			331 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# 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
 |