From patchwork Mon Aug 28 23:10:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 9926395 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 C245560383 for ; Mon, 28 Aug 2017 23:10:59 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 92F9D2879D for ; Mon, 28 Aug 2017 23:10:59 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 87568287F1; Mon, 28 Aug 2017 23:10:59 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 129E7287CE for ; Mon, 28 Aug 2017 23:10:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751276AbdH1XKX (ORCPT ); Mon, 28 Aug 2017 19:10:23 -0400 Received: from merlin.infradead.org ([205.233.59.134]:33754 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751189AbdH1XKS (ORCPT ); Mon, 28 Aug 2017 19:10:18 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: MIME-Version:Date:Message-ID:Subject:From:Cc:To:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=f/Brf4R2u2iQODQ3VTksNdLIZ/gTbpQIw9kx5OF48qg=; b=pdsiALpemoqRjJyRDng6PVAnzg kWI1DnwkkFzA0ueAus4lHQzyPzcGNdUnKIvvap/lz4TrydLMj2XNRg5pTRldCc4XKDD4ctOAygEom ar1P0BegfBoXDf7aZD2+NkUD66lJHc25locSL853yRebhKBFvAJaKDdG6TjHVCV4LgWI+XxRjr0it rKPwq0kOXZ4Vvl+yFv/q1Zi1vUgzA1Ag1aMlrJvL5tmPStGNGAWbeRXUbanZcsaXJBwBlh5t/WUlX THSW42KswrD+fgHOS1tugsminS7SMJGXuvN4STC3pW0gmxfbjsfjJxp0AeSh6eat+42+MLvtWnMr1 l1wDNMCg==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlap) by merlin.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dmTAf-000106-Ih; Mon, 28 Aug 2017 23:10:17 +0000 To: LKML , linux-media , Mauro Carvalho Chehab Cc: Jonathan Corbet , "linux-doc@vger.kernel.org" From: Randy Dunlap Subject: [PATCH 2/2] media: dvb-core: fix demux.h non-ASCII characters Message-ID: <5fb15c64-e376-f461-8a7c-d0c6776870c9@infradead.org> Date: Mon, 28 Aug 2017 16:10:16 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 Content-Language: en-US Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Randy Dunlap Fix non-ASCII charactes in kernel-doc comment to prevent the kernel-doc build warning below. WARNING: kernel-doc '../scripts/kernel-doc -rst -enable-lineno ../drivers/media/dvb-core/demux.h' processing failed with: 'ascii' codec can't decode byte 0xe2 in position 6368: ordinal not in range(128) Signed-off-by: Randy Dunlap --- drivers/media/dvb-core/demux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-413-rc7.orig/drivers/media/dvb-core/demux.h +++ lnx-413-rc7/drivers/media/dvb-core/demux.h @@ -210,7 +210,7 @@ struct dmx_section_feed { * the start of the first undelivered TS packet within a circular buffer. * The @buffer2 buffer parameter is normally NULL, except when the received * TS packets have crossed the last address of the circular buffer and - * ”wrapped” to the beginning of the buffer. In the latter case the @buffer1 + * "wrapped" to the beginning of the buffer. In the latter case the @buffer1 * parameter would contain an address within the circular buffer, while the * @buffer2 parameter would contain the first address of the circular buffer. * The number of bytes delivered with this function (i.e. @buffer1_length +