Commit 39b103b4 authored by Guenter Roeck's avatar Guenter Roeck
Browse files

hwmon: (f75375s) Don't crash the kernel unnecessarily



The f75375s driver crashes the kernel if it detects an an internal
implementation error. While the detected conditions suggest that
there is a bug in the code, the condition is not fatal.
Replace BUG() with WARN().

Cc: Riku Voipio <riku.voipio@iki.fi>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 674d0ed8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -275,7 +275,7 @@ static bool duty_mode_enabled(u8 pwm_enable)
	case 3: /* Manual, speed mode */
		return false;
	default:
		BUG();
		WARN(1, "Unexpected pwm_enable value %d\n", pwm_enable);
		return true;
	}
}
@@ -291,7 +291,7 @@ static bool auto_mode_enabled(u8 pwm_enable)
	case 4: /* Auto, duty mode */
		return true;
	default:
		BUG();
		WARN(1, "Unexpected pwm_enable value %d\n", pwm_enable);
		return false;
	}
}