Skip to content
Snippets Groups Projects
Commit a4e0a080 authored by Guenter Roeck's avatar Guenter Roeck
Browse files

hwmon: (nct6775) Use logical or instead of if statements where possible


Use
	boolean |= <expression>;
instead of
	if (!boolean)
		boolean = <expression>;
to assign values to boolean variables.

No functional change.

Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
parent 2d888c5f
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment