From patchwork Mon Feb 15 21:20:00 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 8319511 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 EE70E9F6E4 for ; Mon, 15 Feb 2016 21:20:12 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1EFDB20398 for ; Mon, 15 Feb 2016 21:20:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1164D202E5 for ; Mon, 15 Feb 2016 21:20:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751810AbcBOVUI (ORCPT ); Mon, 15 Feb 2016 16:20:08 -0500 Received: from mx1.redhat.com ([209.132.183.28]:44265 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751595AbcBOVUI (ORCPT ); Mon, 15 Feb 2016 16:20:08 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (Postfix) with ESMTPS id 156E45A48 for ; Mon, 15 Feb 2016 21:20:08 +0000 (UTC) Received: from shalem.localdomain.com (vpn1-5-7.ams2.redhat.com [10.36.5.7]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u1FLK5au027742; Mon, 15 Feb 2016 16:20:06 -0500 From: Hans de Goede To: Linux Media Mailing List Cc: Hans de Goede Subject: [PATCH xawtv3 1/3] get_media_devices.c: Remove superfluous ; add end of functions Date: Mon, 15 Feb 2016 22:20:00 +0100 Message-Id: <1455571202-5189-1-git-send-email-hdegoede@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Hans de Goede --- common/get_media_devices.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/get_media_devices.c b/common/get_media_devices.c index a2d6354..619734e 100644 --- a/common/get_media_devices.c +++ b/common/get_media_devices.c @@ -227,7 +227,7 @@ static int add_v4l_class(struct media_device_entry *md) md->type = MEDIA_V4L_SUBDEV; return 0; -}; +} static int add_snd_class(struct media_device_entry *md) { @@ -270,7 +270,7 @@ static int add_snd_class(struct media_device_entry *md) md->node = strdup(node); return 0; -}; +} static int add_dvb_class(struct media_device_entry *md) { @@ -294,7 +294,7 @@ static int add_dvb_class(struct media_device_entry *md) md->type = MEDIA_DVB_OSD; return 0; -}; +} static int sort_media_device_entry(const void *a, const void *b) {