VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Fabian Frederick <fabf@skynet.be> 2015-03-16 20:54:38 +0100 committer: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2015-03-25 12:25:28 +0100 commit: 4d8beff2ae07fad85d723b4cdf704b05f0ed4794 parent: 5f5cc81733baf7b67a039a931dae282e53bf97b9
Commit Summary:
uio: constify of_device_id array
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c
index f598ecddc8a7..59c172a0d13a 100644
--- a/drivers/uio/uio_pdrv_genirq.c
+++ b/drivers/uio/uio_pdrv_genirq.c
@@ -252,7 +252,7 @@ static const struct dev_pm_ops uio_pdrv_genirq_dev_pm_ops = {
 };
 
 #ifdef CONFIG_OF
-static struct of_device_id uio_of_genirq_match[] = {
+static const struct of_device_id uio_of_genirq_match[] = {
 	{ /* This is filled with module_parm */ },
 	{ /* Sentinel */ },
 };