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.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 69A1AC433C1 for ; Tue, 23 Mar 2021 12:06:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 288BF61994 for ; Tue, 23 Mar 2021 12:06:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230177AbhCWMGY (ORCPT ); Tue, 23 Mar 2021 08:06:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45676 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229931AbhCWMGF (ORCPT ); Tue, 23 Mar 2021 08:06:05 -0400 Received: from mail.kapsi.fi (mail.kapsi.fi [IPv6:2001:67c:1be8::25]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CCB47C061574 for ; Tue, 23 Mar 2021 05:06:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kapsi.fi; s=20161220; h=Content-Transfer-Encoding:Content-Type:Message-ID:References: In-Reply-To:Subject:Cc:To:From:Date:MIME-Version:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=kTDRd9zfjfWlZO3tHtMdx+hS2YN0gHdMTk7iiOS/mIg=; b=sQ8zIji8VssD74x9oEgyE8zgxC ZEDjCKo4eORExUTikYJiHBnU+oSV/3qmeGbhdvimvM8UTQm5BdwjODDLO1qiNdI0VEqW59yCqjOnB ysW1nF0KimyjzMyDKoX5s4DwTYy/cOknsjqODA+NY+oJ7eDxh4NmAPDL+Z0sn21GViQ40x4uSklAh U1+873PocB64BfgpAM3HIpXOAdWn6sZ+8Yv86yRk1tKuqdcZ+B0uMhI891+wKDMtcofI0u8EHwut0 QRrsYuUDRApvW+uNwgKfx+5tIcpFB1cjOW3W+RUbAu/UprlScKghT4KBsvw8iPMBw/+jLylD1I6Sb Zs2lh/sw==; Received: from webng-gw.kapsi.fi ([91.232.154.200] helo=roundcube.kapsi.fi) by mail.kapsi.fi with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.89) (envelope-from ) id 1lOfnO-0007tU-DR; Tue, 23 Mar 2021 14:06:02 +0200 MIME-Version: 1.0 Date: Tue, 23 Mar 2021 14:05:59 +0200 From: Jyri Sarha To: Dario Binacchi Cc: linux-kernel@vger.kernel.org, Daniel Vetter , David Airlie , Tomi Valkeinen , dri-devel@lists.freedesktop.org Subject: Re: [PATCH v3 0/3] drm/tilcdc: fix LCD pixel clock setting In-Reply-To: <20210322213337.26667-1-dariobin@libero.it> References: <20210322213337.26667-1-dariobin@libero.it> User-Agent: Roundcube Webmail/1.4.11 Message-ID: X-Sender: jyri.sarha@iki.fi Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 91.232.154.200 X-SA-Exim-Mail-From: jyri.sarha@iki.fi X-SA-Exim-Scanned: No (on mail.kapsi.fi); SAEximRunCond expanded to false Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Thanks, Reviewed-by: Jyri Sarha for the series. I'll merge these later today. Best regards, Jyri On 2021-03-22 23:33, Dario Binacchi wrote: > The series was born from a patch to fix the LCD pixel clock setting. > Two additional patches have been added to this. One renames a > misleading > variable name that was probably the cause of the bug and the other > fixes > a warning message. > > > Changes in v3: > - Replace calculated with requested in the warning message. > - Swap the positions of the real_pclk_rate, and pclk_rate parameters > in the warning message. > > Changes in v2: > - The patch has been added in version 2. > - Rename clk_div_rate to real_pclk_rate. > - Provide pixel clock rate to tilcdc_pclk_diff(). > - The patch has been added in version 2. > > Dario Binacchi (3): > drm/tilcdc: rename req_rate to pclk_rate > drm/tilcdc: fix LCD pixel clock setting > drm/tilcdc: fix pixel clock setting warning message > > drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 19 ++++++++++--------- > 1 file changed, 10 insertions(+), 9 deletions(-)