* [PATCH -next] pnp: pnpbios: add header file to fix build errors
@ 2016-07-11 19:41 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2016-07-11 19:41 UTC (permalink / raw)
To: LKML, linux-next@vger.kernel.org, Luis Rodriguez,
Greg Kroah-Hartman
From: Randy Dunlap <rdunlap@infradead.org>
Fix build errors due to missing header file:
../drivers/pnp/pnpbios/core.c: In function 'pnp_dock_event':
../drivers/pnp/pnpbios/core.c:141:2: error: implicit declaration of function 'call_usermodehelper' [-Werror=implicit-function-declaration]
value = call_usermodehelper(argv [0], argv, envp, UMH_WAIT_EXEC);
^
../drivers/pnp/pnpbios/core.c:141:52: error: 'UMH_WAIT_EXEC' undeclared (first use in this function)
value = call_usermodehelper(argv [0], argv, envp, UMH_WAIT_EXEC);
^
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
drivers/pnp/pnpbios/core.c | 1 +
1 file changed, 1 insertion(+)
--- linux-next-20160711.orig/drivers/pnp/pnpbios/core.c
+++ linux-next-20160711/drivers/pnp/pnpbios/core.c
@@ -60,6 +60,7 @@
#include <linux/delay.h>
#include <linux/acpi.h>
#include <linux/freezer.h>
+#include <linux/kmod.h>
#include <linux/kthread.h>
#include <asm/page.h>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2016-07-11 19:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 19:41 [PATCH -next] pnp: pnpbios: add header file to fix build errors Randy Dunlap
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.