On 21/09/16 00:25, Nicolas Pitre wrote:
> Drivers must be ready to accept NULL from ptp_clock_register() if the
> PTP clock subsystem is configured out.
>
> This patch documents that and ensures that all drivers cope well
> with a NULL return.
>
> Signed-off-by: Nicolas Pitre <n...@linaro.org>
> Reviewed-by: Eugenia Emantayev <euge...@mellanox.com>
[...]
> diff --git a/drivers/net/ethernet/sfc/ptp.c b/drivers/net/ethernet/sfc/ptp.c
> index c771e0af4e..f105a170b4 100644
> --- a/drivers/net/ethernet/sfc/ptp.c
> +++ b/drivers/net/ethernet/sfc/ptp.c
> @@ -1269,13 +1269,13 @@ int efx_ptp_probe(struct efx_nic *efx, struct 
> efx_channel *channel)
>               if (IS_ERR(ptp->phc_clock)) {
>                       rc = PTR_ERR(ptp->phc_clock);
>                       goto fail3;
> -             }
> -
> -             INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker);
> -             ptp->pps_workwq = create_singlethread_workqueue("sfc_pps");
> -             if (!ptp->pps_workwq) {
> -                     rc = -ENOMEM;
> -                     goto fail4;
> +             } else if (ptp->phc_clock) {
> +                     INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker);
> +                     ptp->pps_workwq = 
> create_singlethread_workqueue("sfc_pps");
> +                     if (!ptp->pps_workwq) {
> +                             rc = -ENOMEM;
> +                             goto fail4;
> +                     }
>               }
>       }
>       ptp->nic_ts_enabled = false;
For the sfc change:
Acked-by: Edward Cree <ec...@solarflare.com>

Reply via email to