diff options
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r-- | drivers/net/sfc/falcon.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index d4d13c13f8ae..61cc9948b233 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c | |||
@@ -3249,6 +3249,11 @@ void falcon_stop_nic_stats(struct efx_nic *efx) | |||
3249 | spin_unlock_bh(&efx->stats_lock); | 3249 | spin_unlock_bh(&efx->stats_lock); |
3250 | } | 3250 | } |
3251 | 3251 | ||
3252 | static void falcon_set_id_led(struct efx_nic *efx, enum efx_led_mode mode) | ||
3253 | { | ||
3254 | falcon_board(efx)->type->set_id_led(efx, mode); | ||
3255 | } | ||
3256 | |||
3252 | /************************************************************************** | 3257 | /************************************************************************** |
3253 | * | 3258 | * |
3254 | * Wake on LAN | 3259 | * Wake on LAN |
@@ -3290,6 +3295,7 @@ struct efx_nic_type falcon_a1_nic_type = { | |||
3290 | .update_stats = falcon_update_nic_stats, | 3295 | .update_stats = falcon_update_nic_stats, |
3291 | .start_stats = falcon_start_nic_stats, | 3296 | .start_stats = falcon_start_nic_stats, |
3292 | .stop_stats = falcon_stop_nic_stats, | 3297 | .stop_stats = falcon_stop_nic_stats, |
3298 | .set_id_led = falcon_set_id_led, | ||
3293 | .push_irq_moderation = falcon_push_irq_moderation, | 3299 | .push_irq_moderation = falcon_push_irq_moderation, |
3294 | .push_multicast_hash = falcon_push_multicast_hash, | 3300 | .push_multicast_hash = falcon_push_multicast_hash, |
3295 | .reconfigure_port = falcon_reconfigure_port, | 3301 | .reconfigure_port = falcon_reconfigure_port, |
@@ -3328,6 +3334,7 @@ struct efx_nic_type falcon_b0_nic_type = { | |||
3328 | .update_stats = falcon_update_nic_stats, | 3334 | .update_stats = falcon_update_nic_stats, |
3329 | .start_stats = falcon_start_nic_stats, | 3335 | .start_stats = falcon_start_nic_stats, |
3330 | .stop_stats = falcon_stop_nic_stats, | 3336 | .stop_stats = falcon_stop_nic_stats, |
3337 | .set_id_led = falcon_set_id_led, | ||
3331 | .push_irq_moderation = falcon_push_irq_moderation, | 3338 | .push_irq_moderation = falcon_push_irq_moderation, |
3332 | .push_multicast_hash = falcon_push_multicast_hash, | 3339 | .push_multicast_hash = falcon_push_multicast_hash, |
3333 | .reconfigure_port = falcon_reconfigure_port, | 3340 | .reconfigure_port = falcon_reconfigure_port, |