From bc1abb12a902bf57debb1c2a51724c6f34633271 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 23 Feb 2015 01:19:30 -0600 Subject: [PATCH] drivers/i2c/w83793: Remove incorrect zeroing of PWM values Fan 2 and Fan 3 were inexplicably set to zero after device setup. Change-Id: I37945745dbfaf33eb28808d85cdf75dca401e44b Signed-off-by: Timothy Pearson Reviewed-on: http://review.coreboot.org/8520 Reviewed-by: Alexandru Gagniuc Tested-by: build bot (Jenkins) --- src/drivers/i2c/w83793/w83793.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/drivers/i2c/w83793/w83793.c b/src/drivers/i2c/w83793/w83793.c index 4b947d76bb..5b17867dd7 100644 --- a/src/drivers/i2c/w83793/w83793.c +++ b/src/drivers/i2c/w83793/w83793.c @@ -211,10 +211,6 @@ static void w83793_init(struct device *dev) smbus_write_byte(dev, 0x00, 0x00); - /* Fan output style */ - smbus_write_byte(dev, 0xb4, 0x00); - smbus_write_byte(dev, 0xb5, 0x00); - /* start monitoring operation */ smbus_write_byte(dev, 0x40, 0x09);