From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Ding Subject: [PATCH v2] kvm tools: remove redundant "if" condition Date: Wed, 16 Jan 2013 17:52:40 +0100 Message-ID: <20130116165239.GB18593@gmail.com> References: <1358298456-18377-1-git-send-email-dinggnu@gmail.com> <20130116113522.GR11529@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Pekka Enberg , Sasha Levin , Asias He , kvm@vger.kernel.org, linux-kernel@vger.kernel.org To: Gleb Natapov Return-path: Content-Disposition: inline In-Reply-To: <20130116113522.GR11529@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org After we check (state.kcount != 0), state.kcount has to be 0 in all the "else" branchs. Signed-off-by: Cong Ding --- tools/kvm/hw/i8042.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/kvm/hw/i8042.c b/tools/kvm/hw/i8042.c index 9f8be6a..9035732 100644 --- a/tools/kvm/hw/i8042.c +++ b/tools/kvm/hw/i8042.c @@ -189,7 +189,7 @@ static u32 kbd_read_data(void) state.mcount--; kvm__irq_line(state.kvm, AUX_IRQ, 0); kbd_update_irq(); - } else if (state.kcount == 0) { + } else { i = state.kread - 1; if (i < 0) i = QUEUE_SIZE; -- 1.7.10.4