From patchwork Wed Aug 15 20:38:28 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Paul X-Patchwork-Id: 10566839 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 10C48921 for ; Wed, 15 Aug 2018 20:38:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id C1DE32AFEA for ; Wed, 15 Aug 2018 20:38:40 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B5F442AFF0; Wed, 15 Aug 2018 20:38:40 +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=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 2F3012AFEA for ; Wed, 15 Aug 2018 20:38:40 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 0D35489C6C; Wed, 15 Aug 2018 20:38:38 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-yw1-xc41.google.com (mail-yw1-xc41.google.com [IPv6:2607:f8b0:4864:20::c41]) by gabe.freedesktop.org (Postfix) with ESMTPS id A60C189B7D for ; Wed, 15 Aug 2018 20:38:35 +0000 (UTC) Received: by mail-yw1-xc41.google.com with SMTP id s68-v6so1841671ywg.2 for ; Wed, 15 Aug 2018 13:38:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=FshwEkJN7TXJ7BG7VW9mc88H8cC1jwOAYhmmsIMLmSM=; b=mjqOKdvzhcRjEcsdbRdtAetjoEPyv2kJf9h+vnYSzMp3Dehthp22f5H3n5xbBSjeNS KZRMuDt3wbbNPFnmInz7DLGQAcJpbAY9oOG84f46VZ9MsAWFp+RoVGI5UgkffaH//cGL z3AxdHo0F/OcbhtfW3G1CT85CA5i20fuMOcgW7Ns5TS4zU2AOkBLQMt++M1GZDEDc9Px rlUIhhGoqkPwBnEbInUWr4WsD7+6iVgIAA48LmywRsbOIT9erX8a177qz6hhWNNtUhFZ sZ0i4aqgtV3swUyFTgi7tJeqxiH8YXUD2SLnCJJMhAOQSIgvlRMXdBl0A5ARJKSRRLoE NqEw== X-Gm-Message-State: AOUpUlHNYFGqIFH6O9E/TbtYS8pMseY+NvBt62RoZ2AR8RjS1A+9wdhb IccWnxIxaAXSFnknYpaxxKTAdGdQE30= X-Google-Smtp-Source: AA+uWPyH+lfVqPRILT+hdNL0z0EuC65wklctVtyCYL3/UVVSMU54pgnDDRy13K7o/ur6RSeNPXKa6Q== X-Received: by 2002:a25:d3cc:: with SMTP id e195-v6mr15875021ybf.92.1534365514748; Wed, 15 Aug 2018 13:38:34 -0700 (PDT) Received: from rosewood.cam.corp.google.com ([2620:0:1013:11:ad55:b1db:adfe:3b9f]) by smtp.gmail.com with ESMTPSA id v71-v6sm10754054ywg.68.2018.08.15.13.38.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 15 Aug 2018 13:38:34 -0700 (PDT) From: Sean Paul To: dri-devel@lists.freedesktop.org Subject: [PATCH] drm/panel: Fix sphinx warning Date: Wed, 15 Aug 2018 16:38:28 -0400 Message-Id: <20180815203833.210143-1-sean@poorly.run> X-Mailer: git-send-email 2.18.0.865.gffc8e1a3cd6-goog MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Daniel Vetter , Thierry Reding , Sean Paul , Jyri Sarha Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP From: Sean Paul Resolves the following warnings. ../drivers/gpu/drm/drm_panel.c:158: WARNING: Unexpected indentation. ../drivers/gpu/drm/drm_panel.c:159: WARNING: Block quote ends without a blank line; unexpected unindent. Fixes: 83127f67e450 ("drm/panel: Flesh out kerneldoc") Cc: Daniel Vetter Cc: Thierry Reding Cc: Jyri Sarha Signed-off-by: Sean Paul Acked-by: Thierry Reding --- drivers/gpu/drm/drm_panel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/drm_panel.c b/drivers/gpu/drm/drm_panel.c index b902361dee6e..0db486d10d1c 100644 --- a/drivers/gpu/drm/drm_panel.c +++ b/drivers/gpu/drm/drm_panel.c @@ -152,7 +152,9 @@ EXPORT_SYMBOL(drm_panel_detach); * * Return: A pointer to the panel registered for the specified device tree * node or an ERR_PTR() if no panel matching the device tree node can be found. + * * Possible error codes returned by this function: + * * - EPROBE_DEFER: the panel device has not been probed yet, and the caller * should retry later * - ENODEV: the device is not available (status != "okay" or "ok")