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=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no 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 D1A0CC4BA24 for ; Thu, 27 Feb 2020 08:04:28 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9A429222C2 for ; Thu, 27 Feb 2020 08:04:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1582790668; bh=OAv0/LV5X7oycwKmQ/bLPQ7MlGsDXkmJYwtdgm+d9yU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=APMqYrefpVuzRj+Hy8UgyPgGSCH7dN5sjqRlrRs7Fe1uXyNfVT6kAYrfU4DNHO2mU ztF7QEyzim/WV2UJkTl/7A6vKcIyDB7y8SJ+/wbWomm0jAK6HP9mC2qf3G4O2LRs/0 agnPr6zxaw5jtF1DzJf0zRS6Z4oGo12BPS+8pXy4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728430AbgB0IE2 (ORCPT ); Thu, 27 Feb 2020 03:04:28 -0500 Received: from mail-ed1-f67.google.com ([209.85.208.67]:41788 "EHLO mail-ed1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726999AbgB0IE2 (ORCPT ); Thu, 27 Feb 2020 03:04:28 -0500 Received: by mail-ed1-f67.google.com with SMTP id c26so2146320eds.8 for ; Thu, 27 Feb 2020 00:04:27 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=vnXqlO5qYygnxVPzTu5HIo1r14nORQF46kzveUPjQ8w=; b=DmT95IpxBbai1QFSlz7Y1Q4E3sy9eBW6Z4DcCB6LlhEU4S62YP275hG9gT9BwJYXgc l9dAwmyi6P/6Bqse8HwYM8+nUUbGMhm7+1Pr9c7bBN9axdjaCf3DGi3WqHx68M3wOlXF GD1tf3jANmVcwmI2Ok/vFVSaTTGxWUD/8Y4tSczJ5OFGDS1dRpZKOAIT4MhVpICsLNi0 D991hWcXbWRL+kz/8kyuWLbKF679Rq3Iua8afTD5vhCPEe201aRMX8R4ZrT9aqSsxSx3 FOP14OnyBND+pyaM9mMST9zz4zxC+lujKiOtAFILLuZ03DlZ4vJWj75TzObvYSJhTX9h keRA== X-Gm-Message-State: APjAAAUuvHxYg/lrm5dpLwtd+Jrw++Bk7KFqv2yJ3nCT+b9aGjkVQzYy DQgMPK9UUNimg2LInWkmsV8= X-Google-Smtp-Source: APXvYqzlarsX1ty4kym88bwhoDlOh9LwG5i9aGRqpmdhVDmhhTW+frMYte2HrFnOV/lW+TS4Xs2f1Q== X-Received: by 2002:a05:6402:16dc:: with SMTP id r28mr2020730edx.268.1582790666414; Thu, 27 Feb 2020 00:04:26 -0800 (PST) Received: from pi3 ([194.230.155.125]) by smtp.googlemail.com with ESMTPSA id q5sm283970edb.70.2020.02.27.00.04.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 27 Feb 2020 00:04:25 -0800 (PST) Date: Thu, 27 Feb 2020 09:04:23 +0100 From: Krzysztof Kozlowski To: Marek Szyprowski Cc: dri-devel@lists.freedesktop.org, linux-samsung-soc@vger.kernel.org, Bartlomiej Zolnierkiewicz , Seung-Woo Kim , Inki Dae , Andrzej Hajda Subject: Re: [PATCH v2] drm/exynos: dsi: propagate error value and silence meaningless warning Message-ID: <20200227080423.GA7853@pi3> References: <20200227070637.4115-1-m.szyprowski@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20200227070637.4115-1-m.szyprowski@samsung.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org On Thu, Feb 27, 2020 at 08:06:37AM +0100, Marek Szyprowski wrote: > Properly propagate error value from devm_regulator_bulk_get() and don't > confuse user with meaningless warning about failure in getting regulators > in case of deferred probe. > > Signed-off-by: Marek Szyprowski > --- > v2: rephrased commit message > --- > drivers/gpu/drm/exynos/exynos_drm_dsi.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) Reviewed-by: Krzysztof Kozlowski Best regards, Krzysztof 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=-4.0 required=3.0 tests=MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=no 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 D2299C4BA24 for ; Thu, 27 Feb 2020 08:04:30 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B1D3F222C2 for ; Thu, 27 Feb 2020 08:04:30 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org B1D3F222C2 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=dri-devel-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id CCEE86E4EA; Thu, 27 Feb 2020 08:04:29 +0000 (UTC) Received: from mail-ed1-f67.google.com (mail-ed1-f67.google.com [209.85.208.67]) by gabe.freedesktop.org (Postfix) with ESMTPS id D05676E4EA for ; Thu, 27 Feb 2020 08:04:27 +0000 (UTC) Received: by mail-ed1-f67.google.com with SMTP id n18so1874206edw.9 for ; Thu, 27 Feb 2020 00:04:27 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=vnXqlO5qYygnxVPzTu5HIo1r14nORQF46kzveUPjQ8w=; b=IQoqOmV7eu7+QTGNIvB3/D1K+lp5CRab9AMVUEJx7m4capvA/ML3TlnU1kP33Prl+l VoUrVlmJO36os9N76aC2cGmkyj7b2EJZmFk/KRwUSBRIPDVqHLHifyP10Rel+UdnPa2H o1LIn+F4EkXBLTFugEgg9b5GxC4b8eax25kDg5fn2uKqhywJUyo+CdmhQbyhD5LoYKDQ FbClY0zqM1ybiQKHBV34VvBd9ruOtaxIgsQh3spDWv5DLeup+k1L4QlNcCsyJuxFzaGV mQVcllNZzryUFq7Zw7WCkYN9qxVriwgIKEaJ3FeK8AgXRYXG+KDA9zyW22q1uwrTF4eQ ozuw== X-Gm-Message-State: APjAAAWkGpJAoWcT/btXDWzmfLOoog+92Ii+RjLa4H7aI6/mdYP0vtHM loCt3gDQjxLYE05XRWGbpvd9yNxhG+4= X-Google-Smtp-Source: APXvYqzlarsX1ty4kym88bwhoDlOh9LwG5i9aGRqpmdhVDmhhTW+frMYte2HrFnOV/lW+TS4Xs2f1Q== X-Received: by 2002:a05:6402:16dc:: with SMTP id r28mr2020730edx.268.1582790666414; Thu, 27 Feb 2020 00:04:26 -0800 (PST) Received: from pi3 ([194.230.155.125]) by smtp.googlemail.com with ESMTPSA id q5sm283970edb.70.2020.02.27.00.04.24 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 27 Feb 2020 00:04:25 -0800 (PST) Date: Thu, 27 Feb 2020 09:04:23 +0100 From: Krzysztof Kozlowski To: Marek Szyprowski Subject: Re: [PATCH v2] drm/exynos: dsi: propagate error value and silence meaningless warning Message-ID: <20200227080423.GA7853@pi3> References: <20200227070637.4115-1-m.szyprowski@samsung.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20200227070637.4115-1-m.szyprowski@samsung.com> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-samsung-soc@vger.kernel.org, Bartlomiej Zolnierkiewicz , Seung-Woo Kim , dri-devel@lists.freedesktop.org, Andrzej Hajda Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Thu, Feb 27, 2020 at 08:06:37AM +0100, Marek Szyprowski wrote: > Properly propagate error value from devm_regulator_bulk_get() and don't > confuse user with meaningless warning about failure in getting regulators > in case of deferred probe. > > Signed-off-by: Marek Szyprowski > --- > v2: rephrased commit message > --- > drivers/gpu/drm/exynos/exynos_drm_dsi.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) Reviewed-by: Krzysztof Kozlowski Best regards, Krzysztof _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel