23 lines
708 B
Diff
23 lines
708 B
Diff
--- ndiswrapper-1.58.orig/driver/loader.c
|
|
+++ ndiswrapper-1.58/driver/loader.c
|
|
@@ -575,7 +575,7 @@
|
|
} else {
|
|
printk(KERN_INFO "%s: driver %s (%s) loaded\n",
|
|
DRIVER_NAME, wrap_driver->name, wrap_driver->version);
|
|
- add_taint(TAINT_PROPRIETARY_MODULE);
|
|
+ add_taint(TAINT_PROPRIETARY_MODULE, LOCKDEP_STILL_OK);
|
|
EXIT1(return 0);
|
|
}
|
|
}
|
|
--- ndiswrapper-1.58.orig/driver/wrapper.c
|
|
+++ ndiswrapper-1.58/driver/wrapper.c
|
|
@@ -72,7 +72,7 @@
|
|
static int __init wrapper_init(void)
|
|
{
|
|
#ifdef TAINT_OOT_MODULE
|
|
- add_taint(TAINT_OOT_MODULE);
|
|
+ add_taint(TAINT_OOT_MODULE, LOCKDEP_STILL_OK);
|
|
#endif
|
|
printk(KERN_INFO "%s version %s loaded (smp=%s, preempt=%s)\n",
|
|
DRIVER_NAME, DRIVER_VERSION,
|