From patchwork Fri Jan 23 20:09:30 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Boris BREZILLON X-Patchwork-Id: 5697651 Return-Path: X-Original-To: patchwork-dri-devel@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 D2FE19F357 for ; Fri, 23 Jan 2015 20:09:39 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 161CE202E5 for ; Fri, 23 Jan 2015 20:09:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 43004202C8 for ; Fri, 23 Jan 2015 20:09:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C32D96E46D; Fri, 23 Jan 2015 12:09:36 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail.free-electrons.com (down.free-electrons.com [37.187.137.238]) by gabe.freedesktop.org (Postfix) with ESMTP id 8254E6E46D for ; Fri, 23 Jan 2015 12:09:34 -0800 (PST) Received: by mail.free-electrons.com (Postfix, from userid 106) id A0E0038B; Fri, 23 Jan 2015 21:09:34 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 Received: from localhost.localdomain (unknown [80.12.39.106]) by mail.free-electrons.com (Postfix) with ESMTPSA id 1BDCD278; Fri, 23 Jan 2015 21:09:34 +0100 (CET) From: Boris Brezillon To: David Airlie , dri-devel@lists.freedesktop.org, kbuild test robot Subject: [PATCH] drm: fix drm_display_info_set_bus_formats kernel doc header Date: Fri, 23 Jan 2015 21:09:30 +0100 Message-Id: <1422043770-16670-1-git-send-email-boris.brezillon@free-electrons.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <201501221235.r9Qt1mW4%fengguang.wu@intel.com> References: <201501221235.r9Qt1mW4%fengguang.wu@intel.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Virus-Scanned: ClamAV using ClamSMTP formats and num_formats arguments were previously called fmts and nfmts. Fix the kernel doc comment so that it matches the new argument names. Signed-off-by: Boris Brezillon --- drivers/gpu/drm/drm_crtc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index df90048..ad2934b 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c @@ -764,8 +764,8 @@ static void drm_mode_remove(struct drm_connector *connector, /** * drm_display_info_set_bus_formats - set the supported bus formats * @info: display info to store bus formats in - * @fmts: array containing the supported bus formats - * @nfmts: the number of entries in the fmts array + * @formats: array containing the supported bus formats + * @num_formats: the number of entries in the fmts array * * Store the supported bus formats in display info structure. * See MEDIA_BUS_FMT_* definitions in include/uapi/linux/media-bus-format.h for