mlxsw: core: Change BUG to WARN in hwmon code

Better to just warn the user that something really odd is going on and
continue to run.

Suggested-by: Or Gerlitz <gerlitz.or@gmail.com>
Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2015-12-03 10:12:03 +01:00 committed by David S. Miller
parent ead87637a9
commit 6b20da4d8f

View File

@ -215,7 +215,7 @@ static void mlxsw_hwmon_attr_add(struct mlxsw_hwmon *mlxsw_hwmon,
"pwm%u", num + 1);
break;
default:
BUG();
WARN_ON(1);
}
mlxsw_hwmon_attr->type_index = type_index;