Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdefba03 authored by Thomas Renninger's avatar Thomas Renninger Committed by Len Brown
Browse files

PNP: Set up pnp_debug via module and not via boot param.



Cleanup only, no functional change (pnp.debug can be enabled
and disabled at runtime, but that's not a real enhancement).

This one depends on another PNP cleanup patch:
PNP: Compile all pnp built-in stuff in one module namespace

Signed-off-by: default avatarThomas Renninger <trenn@suse.de>
Signed-off-by: default avatarBjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 803711af
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -218,10 +218,5 @@ subsys_initcall(pnp_init);
int pnp_debug;

#if defined(CONFIG_PNP_DEBUG_MESSAGES)
static int __init pnp_debug_setup(char *__unused)
{
	pnp_debug = 1;
	return 1;
}
__setup("pnp.debug", pnp_debug_setup);
module_param_named(debug, pnp_debug, int, 0644);
#endif