Re: [PATCH v3 7/9] firmware: arm_scmi: Make OPTEE transport a standalone driver

From: Cristian Marussi
Date: Thu Aug 01 2024 - 15:22:52 EST


On Wed, Jul 31, 2024 at 08:12:16AM +0200, Krzysztof Kozlowski wrote:
> On 30/07/2024 15:33, Cristian Marussi wrote:
> > Make SCMI OPTEE transport a standalone driver that can be optionally
> > loaded as a module.
> >
> > CC: Etienne Carriere <etienne.carriere@xxxxxxxxxxx>
> > Signed-off-by: Cristian Marussi <cristian.marussi@xxxxxxx>
> > ---
>
> >
> > -const struct scmi_desc scmi_optee_desc = {
> > - .transport_exit = scmi_optee_exit,
> > - .ops = &scmi_optee_ops,
> > - .max_rx_timeout_ms = 30,
> > - .max_msg = 20,
> > - .max_msg_size = SCMI_OPTEE_MAX_MSG_SIZE,
> > - .sync_cmds_completed_on_ret = true,
> > -};
> > +MODULE_ALIAS("scmi-transport-optee");
>
> This looks duplicated with module name.

Yes, my bad, I'll drop this or use something more useful.
Cristian