Commit 15bde2f1 authored by Jean Delvare's avatar Jean Delvare Committed by Mark M. Hoffman

hwmon: End of I/O region off-by-one

Fix an off-by-one error in the I/O region declaration of two
hardware monitoring drivers (lm78 and w83781d.) We were requesting
one extra port at the end of the region.
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarMark M. Hoffman <mhoffman@lightlink.com>
parent b21010ed
...@@ -882,7 +882,7 @@ static int __init lm78_isa_device_add(unsigned short address) ...@@ -882,7 +882,7 @@ static int __init lm78_isa_device_add(unsigned short address)
{ {
struct resource res = { struct resource res = {
.start = address, .start = address,
.end = address + LM78_EXTENT, .end = address + LM78_EXTENT - 1,
.name = "lm78", .name = "lm78",
.flags = IORESOURCE_IO, .flags = IORESOURCE_IO,
}; };
......
...@@ -1746,7 +1746,7 @@ w83781d_isa_device_add(unsigned short address) ...@@ -1746,7 +1746,7 @@ w83781d_isa_device_add(unsigned short address)
{ {
struct resource res = { struct resource res = {
.start = address, .start = address,
.end = address + W83781D_EXTENT, .end = address + W83781D_EXTENT - 1,
.name = "w83781d", .name = "w83781d",
.flags = IORESOURCE_IO, .flags = IORESOURCE_IO,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment