Re: [PATCH v2 06/28] net: wan: Add support for QMC HDLC

From: Christophe Leroy
Date: Tue Aug 08 2023 - 12:24:45 EST




Le 26/07/2023 à 17:02, Herve Codina a écrit :
> The QMC HDLC driver provides support for HDLC using the QMC (QUICC
> Multichannel Controller) to transfer the HDLC data.
>
> Signed-off-by: Herve Codina <herve.codina@xxxxxxxxxxx>


Reviewed-by: Christophe Leroy <christophe.leroy@xxxxxxxxxx>

> diff --git a/drivers/net/wan/fsl_qmc_hdlc.c b/drivers/net/wan/fsl_qmc_hdlc.c
> new file mode 100644
> index 000000000000..b4ebae963d39
> --- /dev/null
> +++ b/drivers/net/wan/fsl_qmc_hdlc.c

> +
> +static inline struct qmc_hdlc *netdev_to_qmc_hdlc(struct net_device *netdev)
> +{
> + return (struct qmc_hdlc *)dev_to_hdlc(netdev)->priv;

->priv is void* so no cast should be necessary.