diff options
author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2012-11-20 13:46:19 +0900 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-11-20 12:46:45 +0100 |
commit | 78566afd8647654b2fb11c3ae13b3d8fe96a8cfe (patch) | |
tree | e70a352cd9ae7ead027da18f49a1340c9dacbe08 /drivers/mfd/arizona-core.c | |
parent | 944b058258da8a40c13300f374dbfc2617a9190d (diff) | |
download | linux-3.10-78566afd8647654b2fb11c3ae13b3d8fe96a8cfe.tar.gz linux-3.10-78566afd8647654b2fb11c3ae13b3d8fe96a8cfe.tar.bz2 linux-3.10-78566afd8647654b2fb11c3ae13b3d8fe96a8cfe.zip |
mfd: arizona: Use correct array for ARRAY_SIZE in mfd_add_devices call
wm5102_devs array was used for ARRAY_SIZE whilst adding the wm5110
devices. This change corrects this to get the size from the wm5110_devs
array. As both arrays are the same size no issues should have been
caused by this bug.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/arizona-core.c')
-rw-r--r-- | drivers/mfd/arizona-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/arizona-core.c b/drivers/mfd/arizona-core.c index 1b48f209480..166254bba4c 100644 --- a/drivers/mfd/arizona-core.c +++ b/drivers/mfd/arizona-core.c @@ -520,7 +520,7 @@ int __devinit arizona_dev_init(struct arizona *arizona) break; case WM5110: ret = mfd_add_devices(arizona->dev, -1, wm5110_devs, - ARRAY_SIZE(wm5102_devs), NULL, 0, NULL); + ARRAY_SIZE(wm5110_devs), NULL, 0, NULL); break; } |