From patchwork Sun Jun 12 10:17:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: han.lu@intel.com X-Patchwork-Id: 9171301 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 1E1A0607DA for ; Sun, 12 Jun 2016 03:01:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1169A22473 for ; Sun, 12 Jun 2016 03:01:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 04D152654B; Sun, 12 Jun 2016 03:01:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=2.0 tests=BAYES_00, DATE_IN_FUTURE_06_12, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 48E2A22473 for ; Sun, 12 Jun 2016 03:01:09 +0000 (UTC) Received: by alsa0.perex.cz (Postfix, from userid 1000) id 009CB2658A6; Sun, 12 Jun 2016 05:01:07 +0200 (CEST) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 3592B260511; Sun, 12 Jun 2016 05:01:00 +0200 (CEST) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id 5A88826051F; Sun, 12 Jun 2016 05:00:58 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by alsa0.perex.cz (Postfix) with ESMTP id 771C92604EB for ; Sun, 12 Jun 2016 05:00:52 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 11 Jun 2016 20:00:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,459,1459839600"; d="scan'208";a="985683588" Received: from hanlu-optiplex-9020.sh.intel.com ([10.239.13.11]) by fmsmga001.fm.intel.com with ESMTP; 11 Jun 2016 20:00:47 -0700 From: han.lu@intel.com To: tiwai@suse.de, liam.r.girdwood@linux.intel.com, alsa-devel@alsa-project.org Date: Sun, 12 Jun 2016 18:17:00 +0800 Message-Id: <1465726620-30679-1-git-send-email-han.lu@intel.com> X-Mailer: git-send-email 2.5.0 Cc: "Lu, Han" Subject: [alsa-devel] [PATCH 1/1] alsabat: fix a missing break in switch X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP From: "Lu, Han" Add the break line for OPT_ROUNDUPLATENCY case. Signed-off-by: Lu, Han diff --git a/bat/bat.c b/bat/bat.c index 72ab8b2..8645770 100644 --- a/bat/bat.c +++ b/bat/bat.c @@ -420,6 +420,7 @@ static void parse_arguments(struct bat *bat, int argc, char *argv[]) break; case OPT_ROUNDTRIPLATENCY: bat->roundtriplatency = true; + break; case OPT_SNRTHD_DB: get_snr_thd_db(bat, optarg); break;