diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 05:03:21 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 05:03:21 (GMT) |
commit | ac88a44561cdacab1a68d883cfb3f39ca1123bdc (patch) | |
tree | 4b1cddaaae43b285bd23385f8e1c345c76d04907 /abs/core-testing/ipw3945/lockup.patch | |
parent | 6b7787e2888c289773c7999860ddd940c71e08b3 (diff) | |
download | linhes_pkgbuild-ac88a44561cdacab1a68d883cfb3f39ca1123bdc.zip linhes_pkgbuild-ac88a44561cdacab1a68d883cfb3f39ca1123bdc.tar.gz linhes_pkgbuild-ac88a44561cdacab1a68d883cfb3f39ca1123bdc.tar.bz2 |
remove outdated ipw3945 driver
Diffstat (limited to 'abs/core-testing/ipw3945/lockup.patch')
-rw-r--r-- | abs/core-testing/ipw3945/lockup.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/abs/core-testing/ipw3945/lockup.patch b/abs/core-testing/ipw3945/lockup.patch deleted file mode 100644 index 993fbbc..0000000 --- a/abs/core-testing/ipw3945/lockup.patch +++ /dev/null @@ -1,31 +0,0 @@ - -Fix potential driver lockup problem - -Since we have already store the inta to priv->isr_inta in the -interrupt handler we don't need to get it from the hardware again -in the tasklet. Some people find ipw3945-1.2.1 still didn't -resolve the boot lockup problem as reported in bugzilla #1096. - -If you still find the lockup problem in ipw3945-1.2.1, please try -this patch and report if it resolves your problem or not to -yi.zhu@intel.com. - -Thanks to Egon for providing this patch! - -Signed-off-by: Egon <anannatrak@yahoo.it> -Signed-off-by: Zhu Yi <yi.zhu@intel.com> --- - ---- a/ipw3945.c 2007-04-11 14:46:58.000000000 +0800 -+++ b/ipw3945.c 2007-05-14 15:55:56.000000000 +0800 -@@ -2769,8 +2769,8 @@ static void ipw_irq_tasklet(struct ipw_p - - spin_lock_irqsave(&priv->lock, flags); - -- inta = ipw_read32(priv, CSR_INT); -- inta_mask = ipw_read32(priv, CSR_INT_MASK); -+ inta = 0; -+ inta_mask = 0; - ipw_write32(priv, CSR_INT, inta); - inta &= (CSR_INI_SET_MASK & inta_mask); - |