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.2.0/STA/Module/rtmp.h (-2 / +2 lines)
Lines 126-137 Link Here
126
126
127
#define NdisReleaseSpinLock(lock)       \
127
#define NdisReleaseSpinLock(lock)       \
128
{                                       \
128
{                                       \
129
    spin_unlock_irqrestore(lock, IrqFlags); \
129
    spin_unlock_bh(lock); \ 
130
}
130
}
131
131
132
#define NdisAcquireSpinLock(lock)       \
132
#define NdisAcquireSpinLock(lock)       \
133
{                                       \
133
{                                       \
134
    spin_lock_irqsave(lock, IrqFlags);  \
134
    spin_lock_bh(lock); \ 
135
}
135
}
136
136
137
#define NdisFreeSpinLock(lock)          \
137
#define NdisFreeSpinLock(lock)          \

Return to bug 58483