diff options
Diffstat (limited to 'linux/dev/kernel')
-rw-r--r-- | linux/dev/kernel/softirq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/dev/kernel/softirq.c b/linux/dev/kernel/softirq.c index 65a0962f..82e1442a 100644 --- a/linux/dev/kernel/softirq.c +++ b/linux/dev/kernel/softirq.c @@ -16,15 +16,15 @@ #include <linux/dev/glue/glue.h> int bh_mask_count[32]; -unsigned long bh_active = 0; -unsigned long bh_mask = 0; +unsigned int bh_active = 0; +unsigned int bh_mask = 0; void (*bh_base[32]) (void); void linux_soft_intr (void) { - unsigned long active; - unsigned long mask, left; + unsigned int active; + unsigned int mask, left; void (**bh) (void); sti (); |