Patch "mtd: rawnand: ams-delta: Fix non-OF build warning" has been added to the 5.8-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    mtd: rawnand: ams-delta: Fix non-OF build warning

to the 5.8-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     mtd-rawnand-ams-delta-fix-non-of-build-warning.patch
and it can be found in the queue-5.8 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit fc28413248e458b4d960ee1dc79ff421f01dbf06
Author: Janusz Krzysztofik <jmkrzyszt@xxxxxxxxx>
Date:   Sat Sep 19 10:04:03 2020 +0200

    mtd: rawnand: ams-delta: Fix non-OF build warning
    
    [ Upstream commit 6d11178762f7c8338a028b428198383b8978b280 ]
    
    Commit 7c2f66a960fc ("mtd: rawnand: ams-delta: Add module device
    tables") introduced an OF module device table but wrapped a reference
    to it with of_match_ptr() which resolves to NULL in non-OF configs.
    That resulted in a clang compiler warning on unused variable in non-OF
    builds.  Fix it.
    
    drivers/mtd/nand/raw/ams-delta.c:373:34: warning: unused variable 'gpio_nand_of_id_table' [-Wunused-const-variable]
       static const struct of_device_id gpio_nand_of_id_table[] = {
                                        ^
       1 warning generated.
    
    Fixes: 7c2f66a960fc ("mtd: rawnand: ams-delta: Add module device tables")
    Reported-by: kernel test robot <lkp@xxxxxxxxx>
    Signed-off-by: Janusz Krzysztofik <jmkrzyszt@xxxxxxxxx>
    Signed-off-by: Miquel Raynal <miquel.raynal@xxxxxxxxxxx>
    Link: https://lore.kernel.org/linux-mtd/20200919080403.17520-1-jmkrzyszt@xxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/mtd/nand/raw/ams-delta.c b/drivers/mtd/nand/raw/ams-delta.c
index 3711e7a0436cd..b3390028c6bfb 100644
--- a/drivers/mtd/nand/raw/ams-delta.c
+++ b/drivers/mtd/nand/raw/ams-delta.c
@@ -400,12 +400,14 @@ static int gpio_nand_remove(struct platform_device *pdev)
 	return 0;
 }
 
+#ifdef CONFIG_OF
 static const struct of_device_id gpio_nand_of_id_table[] = {
 	{
 		/* sentinel */
 	},
 };
 MODULE_DEVICE_TABLE(of, gpio_nand_of_id_table);
+#endif
 
 static const struct platform_device_id gpio_nand_plat_id_table[] = {
 	{



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux