Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'pnp-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull PNP update from Rafael Wysocki:
"One simple change to make the PNP core use device_initcall() instead
of module_init() to run pnpbios_thread_init() (Paul Gortmaker)"

* tag 'pnp-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
PNP: make pnpbios core explicitly non-modular

+1 -2
+1 -2
drivers/pnp/pnpbios/core.c
··· 46 46 */ 47 47 48 48 #include <linux/types.h> 49 - #include <linux/module.h> 50 49 #include <linux/init.h> 51 50 #include <linux/linkage.h> 52 51 #include <linux/kernel.h> ··· 586 587 } 587 588 588 589 /* Start the kernel thread later: */ 589 - module_init(pnpbios_thread_init); 590 + device_initcall(pnpbios_thread_init); 590 591 591 592 EXPORT_SYMBOL(pnpbios_protocol);