summaryrefslogtreecommitdiffstats
path: root/abs/core/ipw3945/lockup.patch
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2009-09-26 01:57:08 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2009-09-26 01:57:08 (GMT)
commit7b29169fff9e7c624890c5edffe85def8a293136 (patch)
tree47753889faa3a2063b66d1c7e7681e703eb1b39a /abs/core/ipw3945/lockup.patch
parentc491dea779dac29afff3578bf8245943817c2339 (diff)
downloadlinhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.zip
linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.gz
linhes_pkgbuild-7b29169fff9e7c624890c5edffe85def8a293136.tar.bz2
LinHES 6.01.00
Diffstat (limited to 'abs/core/ipw3945/lockup.patch')
-rw-r--r--abs/core/ipw3945/lockup.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/abs/core/ipw3945/lockup.patch b/abs/core/ipw3945/lockup.patch
deleted file mode 100644
index 993fbbc..0000000
--- a/abs/core/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);
-