On Sat, Apr 10, 2021 at 11:51 AM Bixuan Cui <cuibixuan@xxxxxxxxxx> wrote: > > This patch adds missing MODULE_DEVICE_TABLE definition which generates > correct modalias for automatic loading of this driver when it is built > as an external module. > > Reported-by: Hulk Robot <hulkci@xxxxxxxxxx> > Signed-off-by: Bixuan Cui <cuibixuan@xxxxxxxxxx> LGTM. Reviewed-by: Baolin Wang <baolin.wang7@xxxxxxxxx> > --- > drivers/i2c/busses/i2c-sprd.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/i2c/busses/i2c-sprd.c b/drivers/i2c/busses/i2c-sprd.c > index 2917fecf6c80..9f77d1ddbaf8 100644 > --- a/drivers/i2c/busses/i2c-sprd.c > +++ b/drivers/i2c/busses/i2c-sprd.c > @@ -640,6 +640,7 @@ static const struct of_device_id sprd_i2c_of_match[] = { > { .compatible = "sprd,sc9860-i2c", }, > {}, > }; > +MODULE_DEVICE_TABLE(of, sprd_i2c_of_match); > > static struct platform_driver sprd_i2c_driver = { > .probe = sprd_i2c_probe, > -- Baolin Wang