From patchwork Tue May 23 09:01:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Charles Keepax X-Patchwork-Id: 13251951 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id AFB94C7EE26 for ; Tue, 23 May 2023 09:01:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236293AbjEWJBl (ORCPT ); Tue, 23 May 2023 05:01:41 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36176 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236291AbjEWJBi (ORCPT ); Tue, 23 May 2023 05:01:38 -0400 Received: from mx0b-001ae601.pphosted.com (mx0b-001ae601.pphosted.com [67.231.152.168]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D00A2FE; Tue, 23 May 2023 02:01:36 -0700 (PDT) Received: from pps.filterd (m0077474.ppops.net [127.0.0.1]) by mx0b-001ae601.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 34N4xakw013915; Tue, 23 May 2023 04:01:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cirrus.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=PODMain02222019; bh=YktBqmQZtM7nktCdMFTj23dyhlDTH14HCoDW43SGwt0=; b=Ov1Kw+XX8dI/lVars0SOP8Cas+nay5g1jWc7YiieY9nttR6KwUHbMYaJ+qI4XGnogpC6 /Th+3TB2aIfX7YDhUvEixLs2CMlETucemd6kr2vH+yOzS8M92OK+NAO3FfUa+EwGj2nm RA2nrolj6eKBwZRTuVXuKVijgEypo7Lb6W+0O2hQC00y4t0Dk9SoghNwuCUJLWQy2rgV MCVA9LdXltsVY1b26L0N0kggQTRyGVOTfRaCJCIKX1g7OrLF+O/8jlxL1056R511w3ck LsUtUeI1aOUTPx4fhGyGcu89dSQ+EMcpwzDboFczhuW6GTdhPZpriYHbhw/iLHUngiBb Wg== Received: from ediex01.ad.cirrus.com ([84.19.233.68]) by mx0b-001ae601.pphosted.com (PPS) with ESMTPS id 3qptmm3bqr-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 23 May 2023 04:01:26 -0500 Received: from ediex02.ad.cirrus.com (198.61.84.81) by ediex01.ad.cirrus.com (198.61.84.80) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.26; Tue, 23 May 2023 04:01:24 -0500 Received: from ediswmail.ad.cirrus.com (198.61.86.93) by anon-ediex02.ad.cirrus.com (198.61.84.81) with Microsoft SMTP Server id 15.2.1118.26 via Frontend Transport; Tue, 23 May 2023 04:01:24 -0500 Received: from algalon.ad.cirrus.com (algalon.ad.cirrus.com [198.90.251.122]) by ediswmail.ad.cirrus.com (Postfix) with ESMTP id 8FADD11D4; Tue, 23 May 2023 09:01:24 +0000 (UTC) From: Charles Keepax To: CC: , , , Subject: [PATCH v3] spi: spi-cadence: Add missing kernel doc for clk_rate in cdns_spi Date: Tue, 23 May 2023 10:01:24 +0100 Message-ID: <20230523090124.3132-1-ckeepax@opensource.cirrus.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: FVd5FCaL-vt9Z9Ek2Ign4BDia0Tzqhop X-Proofpoint-GUID: FVd5FCaL-vt9Z9Ek2Ign4BDia0Tzqhop X-Proofpoint-Spam-Reason: safe Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org Add the missing kernel documentation to silence the build warning. Signed-off-by: Charles Keepax --- Just splitting the patch out to fix my omitting v2 in the title. Thanks, Charles drivers/spi/spi-cadence.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/spi/spi-cadence.c b/drivers/spi/spi-cadence.c index 26e6633693196..de8fe3c5becbb 100644 --- a/drivers/spi/spi-cadence.c +++ b/drivers/spi/spi-cadence.c @@ -102,6 +102,7 @@ * @regs: Virtual address of the SPI controller registers * @ref_clk: Pointer to the peripheral clock * @pclk: Pointer to the APB clock + * @clk_rate: Reference clock frequency, taken from @ref_clk * @speed_hz: Current SPI bus clock speed in Hz * @txbuf: Pointer to the TX buffer * @rxbuf: Pointer to the RX buffer