compat-wireless: remove patches/63-request_module_nowait.patch
authorLuis R. Rodriguez <mcgrof@frijolero.org>
Thu, 14 Jun 2012 22:39:59 +0000 (15:39 -0700)
committerLuis R. Rodriguez <mcgrof@frijolero.org>
Thu, 14 Jun 2012 22:39:59 +0000 (15:39 -0700)
This is no longer required due to patch:

commit d4b10483223cf1a3fd2057785b12e2790a961867
Author: Johannes Berg <johannes.berg@intel.com>
Date:   Tue Jun 12 19:50:43 2012 +0200

    iwlwifi: use request_module instead of _nowait

    Since request_module_nowait() can't be backported
    use request_module() instead -- we don't need the
    asynchronous behaviour of request_module_nowait()
    here since we're running in the firmware request
    work struct.

Tested-by: Donald H Fry <donald.h.fry@intel.com>
Reviewed-by: Donald H Fry <donald.h.fry@intel.com>
Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@frijolero.org>
patches/63-request_module_nowait.patch [deleted file]

diff --git a/patches/63-request_module_nowait.patch b/patches/63-request_module_nowait.patch
deleted file mode 100644 (file)
index ae4bba7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-request_module_nowait() was added on 2.6.30 but we can't
-backport it. Under some circumstances though request_module_nowait()
-likely was not meant to be used on purpose and instead we can
-assume request_module() will work. This patch addresses the few
-places where request_module_nowait() was used but that we can
-at least somewhat assume that this can work. We do not backport
-this into compat.git as a direct static inline given that there
-are surely some places where request_module() cannot be used.
-
-All users of request_module_nowait() should revise their code and
-snsure that is indeed what was meant.
-
---- a/drivers/net/wireless/iwlwifi/iwl-drv.c
-+++ b/drivers/net/wireless/iwlwifi/iwl-drv.c
-@@ -910,7 +910,12 @@ static void iwl_ucode_callback(const str
-               if (!drv->op_mode)
-                       goto out_unbind;
-       } else {
-+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,30))
-               request_module_nowait("%s", op->name);
-+#else
-+              /* Goes untested */
-+              request_module("%s", op->name);
-+#endif
-       }
-       /*