From patchwork Fri May 8 14:13:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Todd Previte X-Patchwork-Id: 6365931 Return-Path: X-Original-To: patchwork-intel-gfx@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 9834F9F1C2 for ; Fri, 8 May 2015 14:14:20 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CEF3E201F5 for ; Fri, 8 May 2015 14:14:19 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id EA7C4201DD for ; Fri, 8 May 2015 14:14:18 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5BE046E8CE; Fri, 8 May 2015 07:14:18 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-pd0-f170.google.com (mail-pd0-f170.google.com [209.85.192.170]) by gabe.freedesktop.org (Postfix) with ESMTP id 88A096E8CE for ; Fri, 8 May 2015 07:14:16 -0700 (PDT) Received: by pdbqa5 with SMTP id qa5so82877780pdb.1 for ; Fri, 08 May 2015 07:14:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=mZLVEy8ISOzUOee1dv9k2l+/BKvILvlwHmStpjHrRnQ=; b=d7DwR0YY8RxjaKpHg7jNwFziLCJWrXU3nG8hpVnntvpb4ag2YmDhYxnKMmjtB6/JoO o4l7t3piVIjiDEG+g/SE3pGfn+MU9vAnPDBz0HFLoP/pD3IzIrDzkMSkMSNG9neFMlb6 6EpW42X94ZWSo3lkIkxjtUKt+1Ril22SIeleTx/9nacGCyk04XfEZcq77oc/Os3sA79r 9HOm5F/sDvbdK77gDjaSeq12wY+WGJIhe1jJKopDx4JWq6nHvSJqss9YvBnqZoeevdyQ wr8YwM/PtBoVYsgkQVfD3Iy5QY59t4Whp3GnM0ItJY3fUvHJ8TCpbsnxvyqEENKRLUGH dh4Q== X-Received: by 10.66.66.166 with SMTP id g6mr7036639pat.88.1431094413802; Fri, 08 May 2015 07:13:33 -0700 (PDT) Received: from localhost.localdomain (ip70-162-72-208.ph.ph.cox.net. [70.162.72.208]) by mx.google.com with ESMTPSA id m4sm5377405pdo.78.2015.05.08.07.13.32 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 08 May 2015 07:13:32 -0700 (PDT) From: Todd Previte To: intel-gfx@lists.freedesktop.org Date: Fri, 8 May 2015 07:13:34 -0700 Message-Id: <1431094414-20740-1-git-send-email-tprevite@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1429639781-28188-1-git-send-email-tprevite@gmail.com> References: <1429639781-28188-1-git-send-email-tprevite@gmail.com> Subject: [Intel-gfx] [PATCH] drm: Fix missing kerneldoc for the edid_corrupt field in struct drm_connector X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, T_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 The kerneldoc for this newly added parameter was missing from the original patch. This patch adds the appropriate kerneldoc entry. Signed-off-by: Todd Previte Tested-By: Intel Graphics QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com) --- include/drm/drm_crtc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/drm/drm_crtc.h b/include/drm/drm_crtc.h index 8bc2724..9cd290c 100644 --- a/include/drm/drm_crtc.h +++ b/include/drm/drm_crtc.h @@ -647,6 +647,7 @@ struct drm_encoder { * @audio_latency: audio latency info from ELD, if found * @null_edid_counter: track sinks that give us all zeros for the EDID * @bad_edid_counter: track sinks that give us an EDID with invalid checksum + * @edid_corrupt: flag for EDID header corruption detection * @debugfs_entry: debugfs directory for this connector * @state: current atomic state for this connector * @has_tile: is this connector connected to a tiled monitor