diff options
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 | } |