Commit 0092db5f authored by Jesse Brandeburg's avatar Jesse Brandeburg Committed by Jakub Kicinski

ice: trivial: fix odd indenting

Fix an odd indent where some code was left indented, and causes smatch
to warn:
ice_log_pkg_init() warn: inconsistent indenting

While here, for consistency, add a break after the default case.

This commit has a Fixes: but we caught this while it was only in net-next.

Fixes: 247dd97d ("ice: Refactor status flow for DDP load")
Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Link: https://lore.kernel.org/r/20211221230538.2546315-1-jesse.brandeburg@intel.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 2030eddc
...@@ -4133,6 +4133,7 @@ static void ice_log_pkg_init(struct ice_hw *hw, enum ice_ddp_state state) ...@@ -4133,6 +4133,7 @@ static void ice_log_pkg_init(struct ice_hw *hw, enum ice_ddp_state state)
case ICE_DDP_PKG_ERR: case ICE_DDP_PKG_ERR:
default: default:
dev_err(dev, "An unknown error occurred when loading the DDP package. Entering Safe Mode.\n"); dev_err(dev, "An unknown error occurred when loading the DDP package. Entering Safe Mode.\n");
break;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment