]> bbs.cooldavid.org Git - net-next-2.6.git/commit - drivers/hwmon/pc87427.c
hwmon: Request the I/O regions in platform drivers
authorJean Delvare <khali@linux-fr.org>
Tue, 8 May 2007 15:21:59 +0000 (17:21 +0200)
committerJean Delvare <khali@hyperion.delvare>
Tue, 8 May 2007 15:21:59 +0000 (17:21 +0200)
commitce7ee4e80a72d3b1009ca232be8981de93c015f6
treeb5160fd4a2b2276f7bd332f753b43f6d9752476b
parent00cb4739053fa0ce4594a7798a4095007a1c7c79
hwmon: Request the I/O regions in platform drivers

My understanding of the resource management in the Linux 2.6 device
driver model is that the devices should declare their resources, and
then when a driver attaches to a device, it should request the
resources it will be using, so as to mark them busy. This is how the
PCI and PNP subsystems work, you can clearly see the two levels of
resources (declaration and request) in /proc/ioports for these
devices.

So I believe that our platform hardware monitoring drivers should
follow the same logic. At the moment, we only declare the resources
but we do not request them. This patch adds the I/O region request
and release calls.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Acked-by: Juerg Haefliger <juergh@gmail.com>
drivers/hwmon/f71805f.c
drivers/hwmon/pc87427.c
drivers/hwmon/vt1211.c