diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-03-01 20:33:28 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2017-03-06 21:18:01 +0100 |
commit | e3779f6a4e7359bc0f83c3e2d34702a6c495e66e (patch) | |
tree | de07e003064165029e6ccc14c53072cdedcada69 /drivers/ata/sata_fsl.c | |
parent | Linux 4.11-rc1 (diff) | |
download | linux-e3779f6a4e7359bc0f83c3e2d34702a6c495e66e.tar.xz linux-e3779f6a4e7359bc0f83c3e2d34702a6c495e66e.zip |
ata: constify of_device_id structures
Declare of_device_id structures as const as they are either passed to
the macro MODULE_DEVICE_TABLE or stored in the of_match_table field of a
device_driver structure. This field is of type const, so of_device_id
structures having this property can be made const too.
Cross compiled the files drivers/ata/pata_macio.c and
drivers/ata/pata_mpc52xx.c for powerpc architecture.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/sata_fsl.c')
-rw-r--r-- | drivers/ata/sata_fsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index a723ae929783..01734d54c69c 100644 --- a/drivers/ata/sata_fsl.c +++ b/drivers/ata/sata_fsl.c @@ -1612,7 +1612,7 @@ static int sata_fsl_resume(struct platform_device *op) } #endif -static struct of_device_id fsl_sata_match[] = { +static const struct of_device_id fsl_sata_match[] = { { .compatible = "fsl,pq-sata", }, |