diff options
author | Arnd Bergmann <arnd@arndb.de> | 2014-03-15 06:43:39 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2014-03-21 13:26:14 -0400 |
commit | 645e27b05203d1535819390bc40660c1669e6093 (patch) | |
tree | dcafbebcd064355321236103746dca7ae5ebbb4c /arch/arm/mach-s3c24xx | |
parent | 37373f161b14a1462dcc3331548417a65f749636 (diff) |
ARM: s3c24xx: fix gta02 build error
The gta02 has always been broken in the case when CONFIG_PCF50633_ADC
is not used, since gta02_charger_worker then passes a nonexisting
variable into the pcf50633_mbc_usb_curlim_set() function.
This addresses the obvious typo by using the variable that is
used everywhere else in this file.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Cc: Tomasz Figa <tomasz.figa@gmail.com>
Cc: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c24xx')
-rw-r--r-- | arch/arm/mach-s3c24xx/mach-gta02.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c24xx/mach-gta02.c b/arch/arm/mach-s3c24xx/mach-gta02.c index d9170e9f8ccd..ee7bb2905a99 100644 --- a/arch/arm/mach-s3c24xx/mach-gta02.c +++ b/arch/arm/mach-s3c24xx/mach-gta02.c | |||
@@ -196,7 +196,7 @@ static void gta02_charger_worker(struct work_struct *work) | |||
196 | * If the PCF50633 ADC is disabled we fallback to a | 196 | * If the PCF50633 ADC is disabled we fallback to a |
197 | * 100mA limit for safety. | 197 | * 100mA limit for safety. |
198 | */ | 198 | */ |
199 | pcf50633_mbc_usb_curlim_set(pcf, 100); | 199 | pcf50633_mbc_usb_curlim_set(gta02_pcf, 100); |
200 | #endif | 200 | #endif |
201 | } | 201 | } |
202 | 202 | ||