From 0bb800b2daf8af56befa332558cd90a50ef8dc4e Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Sat, 3 Mar 2012 12:05:01 -0800 Subject: [PATCH] it87: IT8781F and IT8782F support monitoring 5 fans ... according to the summary datasheets available at the ITE web site. Signed-off-by: Guenter Roeck --- it87.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/it87.c b/it87.c index 74ac8e3..08fd2eb 100644 --- a/it87.c +++ b/it87.c @@ -2270,8 +2270,7 @@ static void __devinit it87_init_device(struct platform_device *pdev) tmp | 0x07); } /* IT8705F and IT8783E/F only support three fans. */ - if (data->type != it87 && data->type != it8781 - && data->type != it8782 && data->type != it8783) { + if (data->type != it87 && data->type != it8783) { if (tmp & (1 << 4)) data->has_fan |= (1 << 3); /* fan4 enabled */ if (tmp & (1 << 5)) -- 2.39.2