From 45f2cfa7efc788c0f0c1fe0544673180459bb29b Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 7 Jun 2015 06:25:06 -0700 Subject: [PATCH] isert: Use break in default case Detected by checkpatch. Signed-off-by: Bart Van Assche --- iscsi-scst/kernel/isert-scst/isert_login.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iscsi-scst/kernel/isert-scst/isert_login.c b/iscsi-scst/kernel/isert-scst/isert_login.c index 37f778be7..eb6752f44 100644 --- a/iscsi-scst/kernel/isert-scst/isert_login.c +++ b/iscsi-scst/kernel/isert-scst/isert_login.c @@ -473,7 +473,7 @@ static bool will_read_block(struct isert_conn_dev *dev) res = false; break; default: - ; + break; } } spin_unlock(&dev->pdu_lock);