diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2008-09-01 07:46:50 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-09-03 09:53:45 -0400 |
commit | dc8cfa55da8c21e0b3290c29677a9d05c0a3e595 (patch) | |
tree | a4c8bedad12a15d1e7c9fcfc99f873280ca644b4 /drivers/net/sfc/efx.h | |
parent | cc12dac2e512c2b6185ed91899e09e9910630315 (diff) |
sfc: Use explicit bool for boolean variables, parameters and return values
Replace (cond ? 1 : 0) with cond or !!cond as appropriate, and
(cond ? 0 : 1) with !cond.
Remove some redundant boolean temporaries.
Rename one field that looks like a flag but isn't.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net/sfc/efx.h')
-rw-r--r-- | drivers/net/sfc/efx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/sfc/efx.h b/drivers/net/sfc/efx.h index 3b2f69f4a9ab..29a1c5830587 100644 --- a/drivers/net/sfc/efx.h +++ b/drivers/net/sfc/efx.h | |||
@@ -28,7 +28,7 @@ extern void efx_wake_queue(struct efx_nic *efx); | |||
28 | /* RX */ | 28 | /* RX */ |
29 | extern void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index); | 29 | extern void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index); |
30 | extern void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index, | 30 | extern void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index, |
31 | unsigned int len, int checksummed, int discard); | 31 | unsigned int len, bool checksummed, bool discard); |
32 | extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay); | 32 | extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay); |
33 | 33 | ||
34 | /* Channels */ | 34 | /* Channels */ |
@@ -50,7 +50,7 @@ extern void efx_hex_dump(const u8 *, unsigned int, const char *); | |||
50 | /* Dummy PHY ops for PHY drivers */ | 50 | /* Dummy PHY ops for PHY drivers */ |
51 | extern int efx_port_dummy_op_int(struct efx_nic *efx); | 51 | extern int efx_port_dummy_op_int(struct efx_nic *efx); |
52 | extern void efx_port_dummy_op_void(struct efx_nic *efx); | 52 | extern void efx_port_dummy_op_void(struct efx_nic *efx); |
53 | extern void efx_port_dummy_op_blink(struct efx_nic *efx, int blink); | 53 | extern void efx_port_dummy_op_blink(struct efx_nic *efx, bool blink); |
54 | 54 | ||
55 | 55 | ||
56 | extern unsigned int efx_monitor_interval; | 56 | extern unsigned int efx_monitor_interval; |
@@ -59,7 +59,7 @@ static inline void efx_schedule_channel(struct efx_channel *channel) | |||
59 | { | 59 | { |
60 | EFX_TRACE(channel->efx, "channel %d scheduling NAPI poll on CPU%d\n", | 60 | EFX_TRACE(channel->efx, "channel %d scheduling NAPI poll on CPU%d\n", |
61 | channel->channel, raw_smp_processor_id()); | 61 | channel->channel, raw_smp_processor_id()); |
62 | channel->work_pending = 1; | 62 | channel->work_pending = true; |
63 | 63 | ||
64 | netif_rx_schedule(channel->napi_dev, &channel->napi_str); | 64 | netif_rx_schedule(channel->napi_dev, &channel->napi_str); |
65 | } | 65 | } |