From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.0 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CE6D3C4360C for ; Tue, 8 Oct 2019 20:46:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 968C7206C0 for ; Tue, 8 Oct 2019 20:46:55 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="h3ds8Dwr" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730720AbfJHUqz (ORCPT ); Tue, 8 Oct 2019 16:46:55 -0400 Received: from bombadil.infradead.org ([198.137.202.133]:57462 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730523AbfJHUqz (ORCPT ); Tue, 8 Oct 2019 16:46:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.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=LKj/7Fff1CfpZBnq21VwwwS/cCFdn8vI3qeat/yQhkQ=; b=h3ds8DwrjR8pC8djYU7u6u5ry RGpLR1VdaW3vUz4bWpHmdEuekoZM4OBGPGui3MwcCYcgX2d+zd47Ypqc1eRkeCBEdbq1GrFN5c9ww mt9IEZcBaBng03XjMcPtOunGHtMu6j98wEwQ86dv606XbUjKqw6h5X35Mon3SY9+k1wnIA+MbbE7D zKYChpFJikxDtSpf06eULy37EwIT8sODU61JhiipTropkiV7/M0U15+ma5bRL2aZQq6j61VaHo/Z8 JcL7zmxXIG7Hm0I7rSIX6MP/4k5q8XXiDJLah5RDXqqUEdMoGdgxPxBR9TbOCJdGJQoBWIDR7HoxT t2bmNVVtQ==; Received: from [2601:1c0:6280:3f0::9ef4] by bombadil.infradead.org with esmtpsa (Exim 4.92.2 #3 (Red Hat Linux)) id 1iHwNh-0006Gq-Qv; Tue, 08 Oct 2019 20:46:54 +0000 To: "open list:SERIAL DRIVERS" , LKML , Greg Kroah-Hartman Cc: Peter Hurley From: Randy Dunlap Subject: [PATCH] serial: fix kernel-doc warning in comments Message-ID: Date: Tue, 8 Oct 2019 13:46:53 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-serial-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org Message-ID: <20191008204653.wXhKgnXIAQQPs1zotRZksyS-Fn3oWbVbSnWK59uN2No@z> From: Randy Dunlap Fix Sphinx warning in serial_core.c: ../drivers/tty/serial/serial_core.c:1969: WARNING: Definition list ends without a blank line; unexpected unindent. Fixes: 73abaf87f01b ("serial: earlycon: Refactor parse_options into serial core") Signed-off-by: Randy Dunlap Cc: Peter Hurley Cc: Greg Kroah-Hartman --- drivers/tty/serial/serial_core.c | 2 ++ 1 file changed, 2 insertions(+) --- linux-next-20191008.orig/drivers/tty/serial/serial_core.c +++ linux-next-20191008/drivers/tty/serial/serial_core.c @@ -1964,8 +1964,10 @@ uart_get_console(struct uart_port *ports * console=,io|mmio|mmio16|mmio32|mmio32be|mmio32native,, * * The optional form + * * earlycon=,0x, * console=,0x, + * * is also accepted; the returned @iotype will be UPIO_MEM. * * Returns 0 on success or -EINVAL on failure