diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-12-04 21:02:42 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-12-04 21:02:42 +0000 |
commit | 8808c5c9a6d7c403182df664bf691a2408ad56ba (patch) | |
tree | 763b4230b74a42e5b5054c6ff7e35857c23d0d10 /drivers/net | |
parent | 074da8c3f230190b4a00177ff781f0a76d8b0dfe (diff) |
Bitops work on long, not int.
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/bagetlance.c | 6 |
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 */ |