From patchwork Mon Aug 30 17:17:25 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Widawsky X-Patchwork-Id: 12465575 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=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham 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 17C0AC43214 for ; Mon, 30 Aug 2021 17:17:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id ED33C60F6C for ; Mon, 30 Aug 2021 17:17:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237949AbhH3RS1 (ORCPT ); Mon, 30 Aug 2021 13:18:27 -0400 Received: from mga03.intel.com ([134.134.136.65]:52385 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237944AbhH3RS1 (ORCPT ); Mon, 30 Aug 2021 13:18:27 -0400 X-IronPort-AV: E=McAfee;i="6200,9189,10092"; a="218360687" X-IronPort-AV: E=Sophos;i="5.84,364,1620716400"; d="scan'208";a="218360687" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Aug 2021 10:17:33 -0700 X-IronPort-AV: E=Sophos;i="5.84,364,1620716400"; d="scan'208";a="427905712" Received: from lopezale-mobl.amr.corp.intel.com (HELO bad-guy.kumite) ([10.252.130.82]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Aug 2021 10:17:33 -0700 From: Ben Widawsky To: linux-cxl@vger.kernel.org Cc: Ben Widawsky , Alison Schofield , Dan Williams , Ira Weiny , Jonathan Cameron , Vishal Verma Subject: [PATCH 2/3] cxl/core/mbox: Remove extra parameter docs Date: Mon, 30 Aug 2021 10:17:25 -0700 Message-Id: <20210830171726.2342558-2-ben.widawsky@intel.com> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20210830171726.2342558-1-ben.widawsky@intel.com> References: <20210830171726.2342558-1-ben.widawsky@intel.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-cxl@vger.kernel.org Fixed "Excess function parameter" warnings generated by the CHECK stage of build. Signed-off-by: Ben Widawsky --- drivers/cxl/core/mbox.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/cxl/core/mbox.c b/drivers/cxl/core/mbox.c index 48a07cf2deb4..1b3335f5ed59 100644 --- a/drivers/cxl/core/mbox.c +++ b/drivers/cxl/core/mbox.c @@ -640,10 +640,6 @@ EXPORT_SYMBOL_GPL(cxl_mem_enumerate_cmds); /** * cxl_mem_get_partition_info - Get partition info * @cxlm: The device to act on - * @active_volatile_bytes: returned active volatile capacity; in bytes - * @active_persistent_bytes: returned active persistent capacity; in bytes - * @next_volatile_bytes: return next volatile capacity; in bytes - * @next_persistent_bytes: return next persistent capacity; in bytes * * Retrieve the current partition info for the device specified. The active * values are the current capacity in bytes. If not 0, the 'next' values are