Le 26/07/2023 à 17:02, Herve Codina a écrit : > qmc_setup_tsa* are called once at initialisation. > They initialize the QMC TSA table. > In order to introduce setup function later on for dynamic timeslots > management, rename the function to avoid later confusion. > > Signed-off-by: Herve Codina <herve.codina@xxxxxxxxxxx> Reviewed-by: Christophe Leroy <christophe.leroy@xxxxxxxxxx> > --- > drivers/soc/fsl/qe/qmc.c | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/drivers/soc/fsl/qe/qmc.c b/drivers/soc/fsl/qe/qmc.c > index 21ad7e79e7bd..64a11f5c6f85 100644 > --- a/drivers/soc/fsl/qe/qmc.c > +++ b/drivers/soc/fsl/qe/qmc.c > @@ -919,7 +919,7 @@ static int qmc_of_parse_chans(struct qmc *qmc, struct device_node *np) > return qmc_check_chans(qmc); > } > > -static int qmc_setup_tsa_64rxtx(struct qmc *qmc, const struct tsa_serial_info *info) > +static int qmc_init_tsa_64rxtx(struct qmc *qmc, const struct tsa_serial_info *info) > { > struct qmc_chan *chan; > unsigned int i; > @@ -961,7 +961,7 @@ static int qmc_setup_tsa_64rxtx(struct qmc *qmc, const struct tsa_serial_info *i > return 0; > } > > -static int qmc_setup_tsa_32rx_32tx(struct qmc *qmc, const struct tsa_serial_info *info) > +static int qmc_init_tsa_32rx_32tx(struct qmc *qmc, const struct tsa_serial_info *info) > { > struct qmc_chan *chan; > unsigned int i; > @@ -1019,7 +1019,7 @@ static int qmc_setup_tsa_32rx_32tx(struct qmc *qmc, const struct tsa_serial_info > return 0; > } > > -static int qmc_setup_tsa(struct qmc *qmc) > +static int qmc_init_tsa(struct qmc *qmc) > { > struct tsa_serial_info info; > int ret; > @@ -1030,12 +1030,12 @@ static int qmc_setup_tsa(struct qmc *qmc) > return ret; > > /* > - * Setup one common 64 entries table or two 32 entries (one for Tx and > - * one for Tx) according to assigned TS numbers. > + * Initialize one common 64 entries table or two 32 entries (one for Tx > + * and one for Tx) according to assigned TS numbers. > */ > return ((info.nb_tx_ts > 32) || (info.nb_rx_ts > 32)) ? > - qmc_setup_tsa_64rxtx(qmc, &info) : > - qmc_setup_tsa_32rx_32tx(qmc, &info); > + qmc_init_tsa_64rxtx(qmc, &info) : > + qmc_init_tsa_32rx_32tx(qmc, &info); > } > > static int qmc_setup_chan_trnsync(struct qmc *qmc, struct qmc_chan *chan) > @@ -1391,7 +1391,7 @@ static int qmc_probe(struct platform_device *pdev) > qmc_write32(qmc->scc_pram + QMC_GBL_C_MASK32, 0xDEBB20E3); > qmc_write16(qmc->scc_pram + QMC_GBL_C_MASK16, 0xF0B8); > > - ret = qmc_setup_tsa(qmc); > + ret = qmc_init_tsa(qmc); > if (ret) > goto err_tsa_serial_disconnect; >