hwmon: (w83795) Use 2D arrays for many device attributes
authorJean Delvare <khali@linux-fr.org>
Thu, 28 Oct 2010 18:31:45 +0000 (20:31 +0200)
committerJean Delvare <khali@endymion.delvare>
Thu, 28 Oct 2010 18:31:45 +0000 (20:31 +0200)
commit87df0dad3e024538d2d0d2ce786230e639c2ea8b
tree60b5be6938e3050ce7a117a26aa407f6315d3d0c
parent6f3dcde9c6dcbbe781a2a98900552bcb989733e3
hwmon: (w83795) Use 2D arrays for many device attributes

Use 2D arrays for in, fan, temp and dts device attributes. Using
linear arrays is too risky as we have to skip some groups depending
on the device model and configuration. Adding or removing an
attribute would let the driver build silently but then it would crash
at runtime. With 2D arrays, the consistency checking happens at build
time, which is much safer.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
drivers/hwmon/w83795.c