summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-12-04 21:02:42 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-12-04 21:02:42 +0000
commit8808c5c9a6d7c403182df664bf691a2408ad56ba (patch)
tree763b4230b74a42e5b5054c6ff7e35857c23d0d10 /drivers
parent074da8c3f230190b4a00177ff781f0a76d8b0dfe (diff)
Bitops work on long, not int.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/bagetlance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/bagetlance.c b/drivers/net/bagetlance.c
index 9df9a4b1a..916f2e857 100644
--- a/drivers/net/bagetlance.c
+++ b/drivers/net/bagetlance.c
@@ -224,9 +224,9 @@ struct lance_private {
/* copy function */
void *(*memcpy_f)( void *, const void *, size_t );
struct net_device_stats stats;
-/* These two must be ints for set_bit() */
- int tx_full;
- int lock;
+/* These two must be longs for set_bit() */
+ long tx_full;
+ long lock;
};
/* I/O register access macros */