From patchwork Wed Jan 6 21:17:59 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shuah Khan X-Patchwork-Id: 7971211 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id A9AA89F1CC for ; Wed, 6 Jan 2016 21:18:09 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C790220173 for ; Wed, 6 Jan 2016 21:18:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 748E42015E for ; Wed, 6 Jan 2016 21:18:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752068AbcAFVSE (ORCPT ); Wed, 6 Jan 2016 16:18:04 -0500 Received: from mailout.easymail.ca ([64.68.201.169]:52549 "EHLO mailout.easymail.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751966AbcAFVSC (ORCPT ); Wed, 6 Jan 2016 16:18:02 -0500 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id EC519E475; Wed, 6 Jan 2016 16:18:01 -0500 (EST) X-Virus-Scanned: Debian amavisd-new at mailout.easymail.ca X-Spam-Score: -3.572 X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (easymail-mailout.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 53cvnyAZtcit; Wed, 6 Jan 2016 16:18:01 -0500 (EST) Received: from mail.gonehiking.org (c-73-181-52-62.hsd1.co.comcast.net [73.181.52.62]) by mailout.easymail.ca (Postfix) with ESMTPA id 8092DE491; Wed, 6 Jan 2016 16:18:01 -0500 (EST) Received: from lorien.internal (lorien-wl.internal [192.168.1.40]) by mail.gonehiking.org (Postfix) with ESMTP id E2C409F307; Wed, 6 Jan 2016 14:18:00 -0700 (MST) From: Shuah Khan To: mchehab@osg.samsung.com, hans.verkuil@cisco.com Cc: Shuah Khan , linux-media@vger.kernel.org Subject: [PATCH] v4l-utils: mc_nextgen_test renable ALSA interfaces Date: Wed, 6 Jan 2016 14:17:59 -0700 Message-Id: <1452115079-6040-1-git-send-email-shuahkh@osg.samsung.com> X-Mailer: git-send-email 2.5.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP ALSA interfaces were disable with #if 0. Renable them. Signed-off-by: Shuah Khan --- contrib/test/mc_nextgen_test.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/test/mc_nextgen_test.c b/contrib/test/mc_nextgen_test.c index 14a0917..7d0344b 100644 --- a/contrib/test/mc_nextgen_test.c +++ b/contrib/test/mc_nextgen_test.c @@ -184,7 +184,6 @@ static inline const char *intf_type(uint32_t intf_type) return "v4l2-subdev"; case MEDIA_INTF_T_V4L_SWRADIO: return "swradio"; -#if 0 case MEDIA_INTF_T_ALSA_PCM_CAPTURE: return "pcm-capture"; case MEDIA_INTF_T_ALSA_PCM_PLAYBACK: @@ -197,7 +196,6 @@ static inline const char *intf_type(uint32_t intf_type) return "rawmidi"; case MEDIA_INTF_T_ALSA_HWDEP: return "hwdep"; -#endif default: return "unknown_intf"; }