diff options
author | Damien Le Moal | 2023-08-24 07:41:59 +0900 |
---|---|---|
committer | Damien Le Moal | 2023-08-25 08:21:03 +0900 |
commit | 7274eef5729037300f29d14edeb334a47a098f65 (patch) | |
tree | 7b2bfeafb752b88e9b8d9fbffbdcdd1b1c3be67f /drivers/ata | |
parent | 252a0935ff2da38ce3d37df3b4186f2dd6521027 (diff) |
ata: pata_ftide010: Add missing MODULE_DESCRIPTION
Add the missing MODULE_DESCRIPTION() to avoid warnings such as:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/ata/pata_ftide010.o
when compiling with W=1.
Fixes: be4e456ed3a5 ("ata: Add driver for Faraday Technology FTIDE010")
Cc: stable@vger.kernel.org
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/pata_ftide010.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/pata_ftide010.c b/drivers/ata/pata_ftide010.c index d77ee40115aa..4d6ef90ccc77 100644 --- a/drivers/ata/pata_ftide010.c +++ b/drivers/ata/pata_ftide010.c @@ -560,6 +560,7 @@ static struct platform_driver pata_ftide010_driver = { }; module_platform_driver(pata_ftide010_driver); +MODULE_DESCRIPTION("low level driver for Faraday Technology FTIDE010"); MODULE_AUTHOR("Linus Walleij <linus.walleij@linaro.org>"); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME); |