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=-6.0 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, 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 2EE76C43381 for ; Fri, 22 Mar 2019 12:31:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EA0E2218A1 for ; Fri, 22 Mar 2019 12:31:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553257905; bh=fWausaEufPMCcgDK69/lxzWayLK8umJeoaFf/xz2+NA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=nN4n79+vHICVDJFRd9Gx2MII1pOQ+8hb4jsiUguc2UhikCK9Pfz4Ud+rpWgKIjWVx sVn+DMt3XirMby4Dj4BkpFj0joUibl/9dvLBTlElF5OEhGkqqhdihRO+bbDLI8PscO 213hoGJ/nFO+96VKakQVpSMxt41VL81/xoyFurxo= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2390518AbfCVMbn (ORCPT ); Fri, 22 Mar 2019 08:31:43 -0400 Received: from mail.kernel.org ([198.145.29.99]:57938 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390567AbfCVMS7 (ORCPT ); Fri, 22 Mar 2019 08:18:59 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (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 8CB5C2083D; Fri, 22 Mar 2019 12:18:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1553257139; bh=fWausaEufPMCcgDK69/lxzWayLK8umJeoaFf/xz2+NA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=irqXplac+d5aZPEMi7dN0EHLsJup0sPdy2tryDXsbwLvS8umZsRBTc5OzuH/p4/kI Vw5wtIuqGELLnvEbIsHagCKCue63UeCgnzDirdSLEW7sPfcT81a4j9UoCN21P4QGCH riK9gfS4RDXLJTNmlaEp2jA3RExMbTqMrftpObuc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Paul Cercueil , Maarten ter Huurne , Stephen Boyd Subject: [PATCH 5.0 144/238] clk: ingenic: Fix doc of ingenic_cgu_div_info Date: Fri, 22 Mar 2019 12:16:03 +0100 Message-Id: <20190322111306.879585933@linuxfoundation.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190322111258.383569278@linuxfoundation.org> References: <20190322111258.383569278@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review X-Patchwork-Hint: ignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 5.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Paul Cercueil commit 7ca4c922aad2e3c46767a12f80d01c6b25337b59 upstream. The 'div' field does not represent a number of bits used to divide (understand: right-shift) the divider, but a number itself used to divide the divider. Signed-off-by: Paul Cercueil Signed-off-by: Maarten ter Huurne Cc: Signed-off-by: Stephen Boyd Signed-off-by: Greg Kroah-Hartman --- drivers/clk/ingenic/cgu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/clk/ingenic/cgu.h +++ b/drivers/clk/ingenic/cgu.h @@ -80,7 +80,7 @@ struct ingenic_cgu_mux_info { * @reg: offset of the divider control register within the CGU * @shift: number of bits to left shift the divide value by (ie. the index of * the lowest bit of the divide value within its control register) - * @div: number of bits to divide the divider value by (i.e. if the + * @div: number to divide the divider value by (i.e. if the * effective divider value is the value written to the register * multiplied by some constant) * @bits: the size of the divide value in bits