From mboxrd@z Thu Jan 1 00:00:00 1970 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=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 CA237C4363A for ; Fri, 23 Oct 2020 16:35:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6A251208C3 for ; Fri, 23 Oct 2020 16:35:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603470935; bh=oO8rHblWrltD5o/CNaVST9iwCP59MCxNxH8BZzAUDy4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=p3usxSRuTepChFvhG2rzkFP7skdOrpvjiBtFc2J0ZyUrGEZisevJDfWH/3QVKmb84 tt2Rs+zSzaToDNKfAI/atrTVEOIiZLXsUSMaz8r800Un7SHZ+SUpK0pAUM9rt/S9e8 OdRAMi6NiMK+X357meBAx4vPZC0l08O4RF1nowhU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S463255AbgJWQfd (ORCPT ); Fri, 23 Oct 2020 12:35:33 -0400 Received: from mail.kernel.org ([198.145.29.99]:33604 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751874AbgJWQdv (ORCPT ); Fri, 23 Oct 2020 12:33:51 -0400 Received: from mail.kernel.org (ip5f5ad5a3.dynamic.kabel-deutschland.de [95.90.213.163]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 2B08D24728; Fri, 23 Oct 2020 16:33:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603470829; bh=oO8rHblWrltD5o/CNaVST9iwCP59MCxNxH8BZzAUDy4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jQ0+RECx3STbdEd2V/INhAoxUb2EKibO4gc7MTIrJBeW7dwMrk0XLiI8CWtsyu4/D /Efzq7tPYI/GM2isaLu7+VF+NE2ZUctD8ZAyNTAXHGBUm6jECsv5g5lUQguykgSn0c 0HqrhVGgP2toUPzK91vEriwg8y9wFMPG5yzdsxQU= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kW00g-002Ax4-AX; Fri, 23 Oct 2020 18:33:46 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , Russell King , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 38/56] clk: fix a kernel-doc markup Date: Fri, 23 Oct 2020 18:33:25 +0200 Message-Id: X-Mailer: git-send-email 2.26.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org clk_get_duty_cycle -> clk_get_scaled_duty_cycle Signed-off-by: Mauro Carvalho Chehab --- include/linux/clk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/clk.h b/include/linux/clk.h index 7fd6a1febcf4..5f8d5f4931c0 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -150,7 +150,7 @@ int clk_get_phase(struct clk *clk); int clk_set_duty_cycle(struct clk *clk, unsigned int num, unsigned int den); /** - * clk_get_duty_cycle - return the duty cycle ratio of a clock signal + * clk_get_scaled_duty_cycle - return the duty cycle ratio of a clock signal * @clk: clock signal source * @scale: scaling factor to be applied to represent the ratio as an integer * -- 2.26.2