From: Jean Delvare Date: Thu, 28 Oct 2010 18:31:47 +0000 (+0200) Subject: hwmon: (w83795) Fix parity checks X-Git-Tag: v2.6.37-rc1~59^2~25 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7eb8d508b5cfabbb147670ee063438469d94c465;p=pandora-kernel.git hwmon: (w83795) Fix parity checks x % 1 is obviously wrong, as it always evaluates to 0. You want x % 2, or x & 1, for parity checking. Signed-off-by: Jean Delvare --- Reading git-diff-tree failed