diff options
| -rw-r--r-- | MAINTAINERS | 8 | ||||
| -rw-r--r-- | drivers/hwmon/f71882fg.c | 4 | ||||
| -rw-r--r-- | drivers/hwmon/vt1211.c | 2 | ||||
| -rw-r--r-- | drivers/hwmon/w83627ehf.c | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 53b50c8d5f38..e784b358b335 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -1905,10 +1905,10 @@ W: http://gigaset307x.sourceforge.net/ | |||
| 1905 | S: Maintained | 1905 | S: Maintained |
| 1906 | 1906 | ||
| 1907 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER | 1907 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 1908 | P: Robert Love | 1908 | P: Frank Seidel |
| 1909 | M: rlove@rlove.org | 1909 | M: frank@f-seidel.de |
| 1910 | M: linux-kernel@vger.kernel.org | 1910 | L: lm-sensors@lm-sensors.org |
| 1911 | W: http://www.kernel.org/pub/linux/kernel/people/rml/hdaps/ | 1911 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
| 1912 | S: Maintained | 1912 | S: Maintained |
| 1913 | 1913 | ||
| 1914 | GSPCA FINEPIX SUBDRIVER | 1914 | GSPCA FINEPIX SUBDRIVER |
diff --git a/drivers/hwmon/f71882fg.c b/drivers/hwmon/f71882fg.c index 609cafff86bc..5f81ddf71508 100644 --- a/drivers/hwmon/f71882fg.c +++ b/drivers/hwmon/f71882fg.c | |||
| @@ -1872,7 +1872,7 @@ static int __init f71882fg_find(int sioaddr, unsigned short *address, | |||
| 1872 | 1872 | ||
| 1873 | devid = superio_inw(sioaddr, SIO_REG_MANID); | 1873 | devid = superio_inw(sioaddr, SIO_REG_MANID); |
| 1874 | if (devid != SIO_FINTEK_ID) { | 1874 | if (devid != SIO_FINTEK_ID) { |
| 1875 | printk(KERN_INFO DRVNAME ": Not a Fintek device\n"); | 1875 | pr_debug(DRVNAME ": Not a Fintek device\n"); |
| 1876 | goto exit; | 1876 | goto exit; |
| 1877 | } | 1877 | } |
| 1878 | 1878 | ||
| @@ -1932,7 +1932,7 @@ static int __init f71882fg_device_add(unsigned short address, | |||
| 1932 | res.name = f71882fg_pdev->name; | 1932 | res.name = f71882fg_pdev->name; |
| 1933 | err = acpi_check_resource_conflict(&res); | 1933 | err = acpi_check_resource_conflict(&res); |
| 1934 | if (err) | 1934 | if (err) |
| 1935 | return err; | 1935 | goto exit_device_put; |
| 1936 | 1936 | ||
| 1937 | err = platform_device_add_resources(f71882fg_pdev, &res, 1); | 1937 | err = platform_device_add_resources(f71882fg_pdev, &res, 1); |
| 1938 | if (err) { | 1938 | if (err) { |
diff --git a/drivers/hwmon/vt1211.c b/drivers/hwmon/vt1211.c index b0ce37852281..73f77a9b8b18 100644 --- a/drivers/hwmon/vt1211.c +++ b/drivers/hwmon/vt1211.c | |||
| @@ -1262,7 +1262,7 @@ static int __init vt1211_device_add(unsigned short address) | |||
| 1262 | res.name = pdev->name; | 1262 | res.name = pdev->name; |
| 1263 | err = acpi_check_resource_conflict(&res); | 1263 | err = acpi_check_resource_conflict(&res); |
| 1264 | if (err) | 1264 | if (err) |
| 1265 | goto EXIT; | 1265 | goto EXIT_DEV_PUT; |
| 1266 | 1266 | ||
| 1267 | err = platform_device_add_resources(pdev, &res, 1); | 1267 | err = platform_device_add_resources(pdev, &res, 1); |
| 1268 | if (err) { | 1268 | if (err) { |
diff --git a/drivers/hwmon/w83627ehf.c b/drivers/hwmon/w83627ehf.c index cb808d015361..feae743ba991 100644 --- a/drivers/hwmon/w83627ehf.c +++ b/drivers/hwmon/w83627ehf.c | |||
| @@ -1548,7 +1548,7 @@ static int __init sensors_w83627ehf_init(void) | |||
| 1548 | 1548 | ||
| 1549 | err = acpi_check_resource_conflict(&res); | 1549 | err = acpi_check_resource_conflict(&res); |
| 1550 | if (err) | 1550 | if (err) |
| 1551 | goto exit; | 1551 | goto exit_device_put; |
| 1552 | 1552 | ||
| 1553 | err = platform_device_add_resources(pdev, &res, 1); | 1553 | err = platform_device_add_resources(pdev, &res, 1); |
| 1554 | if (err) { | 1554 | if (err) { |
