mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
hwmon: (s3c-hwmon) Fix build error
The previous patch, commit be4c23c93c
was
from the wrong tree and thus broke the current build which had the
channel configuration name changed.
Fix the following build errors:
drivers/hwmon/s3c-hwmon.c: In function 's3c_hwmon_probe':
drivers/hwmon/s3c-hwmon.c:326: warning: initialization from incompatible pointer type
drivers/hwmon/s3c-hwmon.c:331: error: dereferencing pointer to incomplete type
drivers/hwmon/s3c-hwmon.c:336: error: dereferencing pointer to incomplete type
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
This commit is contained in:
parent
2b876f95d0
commit
6d905e67cf
1 changed files with 2 additions and 2 deletions
|
@ -323,7 +323,7 @@ static int __devinit s3c_hwmon_probe(struct platform_device *dev)
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(pdata->in); i++) {
|
for (i = 0; i < ARRAY_SIZE(pdata->in); i++) {
|
||||||
struct s3c24xx_adc_hwmon_incfg *cfg = pdata->in[i];
|
struct s3c_hwmon_chcfg *cfg = pdata->in[i];
|
||||||
|
|
||||||
if (!cfg)
|
if (!cfg)
|
||||||
continue;
|
continue;
|
||||||
|
@ -333,7 +333,7 @@ static int __devinit s3c_hwmon_probe(struct platform_device *dev)
|
||||||
"channel %d multiplier too large\n",
|
"channel %d multiplier too large\n",
|
||||||
i);
|
i);
|
||||||
|
|
||||||
if (cfg->divider == 0) {
|
if (cfg->div == 0) {
|
||||||
dev_err(&dev->dev, "channel %d divider zero\n", i);
|
dev_err(&dev->dev, "channel %d divider zero\n", i);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue