Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 58483 | Differences between
and this patch

Collapse All | Expand All

(-)RT2500-Linux-STA-1.4.3.0.orig/STA/Module/rtmp.h (-2 / +2 lines)
Lines 125-136 Link Here
125
125
126
#define NdisReleaseSpinLock(lock)       \
126
#define NdisReleaseSpinLock(lock)       \
127
{                                       \
127
{                                       \
128
    spin_unlock_irqrestore(lock, IrqFlags); \
128
    spin_unlock_bh(lock); \
129
}
129
}
130
130
131
#define NdisAcquireSpinLock(lock)       \
131
#define NdisAcquireSpinLock(lock)       \
132
{                                       \
132
{                                       \
133
    spin_lock_irqsave(lock, IrqFlags);  \
133
    spin_lock_bh(lock);  \
134
}
134
}
135
135
136
#define NdisFreeSpinLock(lock)          \
136
#define NdisFreeSpinLock(lock)          \

Return to bug 58483