diff options
| author | Olof Johansson <olof@lixom.net> | 2012-09-21 22:53:48 -0700 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2012-09-21 22:54:15 -0700 | 
| commit | b536661bb0091b19123fa0c22f7087fd886d7b37 (patch) | |
| tree | e83c4ff9bbfe94155cbc7b25fb3b62b814e79ad7 /drivers/mfd/sec-core.c | |
| parent | 20804abdbcfced47b460e5794a685d48225ac754 (diff) | |
| parent | fb997a46626dca2778fa7570bb516d8486f2f837 (diff) | |
| download | olio-linux-3.10-b536661bb0091b19123fa0c22f7087fd886d7b37.tar.xz olio-linux-3.10-b536661bb0091b19123fa0c22f7087fd886d7b37.zip  | |
Merge branch 'v3.7-samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/fixes-non-critical
A few non-critical fixes/cleanups for samsung platforms.
* 'v3.7-samsung-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
  ARM: SAMSUNG: Add missing variable declaration in s3c64xx_spi1_set_platdata()
  ARM: S3C24XX: removes unnecessary semicolon
  ARM: S3C24xx: delete double assignment
  ARM: EXYNOS: fix address for EXYNOS4 MDMA1
  ARM: EXYNOS: fixed SYSMMU setup definition to mate parameter name
  + sync to 3.6-rc6
Diffstat (limited to 'drivers/mfd/sec-core.c')
| -rw-r--r-- | drivers/mfd/sec-core.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c index 2988efde11e..49d361a618d 100644 --- a/drivers/mfd/sec-core.c +++ b/drivers/mfd/sec-core.c @@ -141,19 +141,19 @@ static int sec_pmic_probe(struct i2c_client *i2c,  	switch (sec_pmic->device_type) {  	case S5M8751X:  		ret = mfd_add_devices(sec_pmic->dev, -1, s5m8751_devs, -					ARRAY_SIZE(s5m8751_devs), NULL, 0); +				      ARRAY_SIZE(s5m8751_devs), NULL, 0, NULL);  		break;  	case S5M8763X:  		ret = mfd_add_devices(sec_pmic->dev, -1, s5m8763_devs, -					ARRAY_SIZE(s5m8763_devs), NULL, 0); +				      ARRAY_SIZE(s5m8763_devs), NULL, 0, NULL);  		break;  	case S5M8767X:  		ret = mfd_add_devices(sec_pmic->dev, -1, s5m8767_devs, -					ARRAY_SIZE(s5m8767_devs), NULL, 0); +				      ARRAY_SIZE(s5m8767_devs), NULL, 0, NULL);  		break;  	case S2MPS11X:  		ret = mfd_add_devices(sec_pmic->dev, -1, s2mps11_devs, -					ARRAY_SIZE(s2mps11_devs), NULL, 0); +				      ARRAY_SIZE(s2mps11_devs), NULL, 0, NULL);  		break;  	default:  		/* If this happens the probe function is problem */  |