Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp6809374imu; Mon, 3 Dec 2018 03:14:45 -0800 (PST) X-Google-Smtp-Source: AFSGD/WdB7HToAl54iFh4xpM1Tip7uYZ1p3+d9RbfVQJmawspIF7OcubMQBYqxORHKivjMVbmLZK X-Received: by 2002:a63:dc54:: with SMTP id f20mr13050725pgj.410.1543835685907; Mon, 03 Dec 2018 03:14:45 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1543835685; cv=none; d=google.com; s=arc-20160816; b=kATgwXrRQOv4sULS+E8A996c3K7tor+5JcU/uLWXhNQ3BO7+z1MkgLH88Uj9RqSGG5 h++rJEXdOzjAo5VnwxGabC2SUVH81Vd/o1kPBbnrelISkLoTnr4AIK0g1r8Q0jgSH+s+ a+f41evx41/YCrmMGNmHelP33x2M+mm5t+W43Ka0mtepG0olOrDs6PQwyxCIa2pbEvhj YnLtobSrI+dxj3aHDHugi9/zGEh9nXwJw+iTl1ibNNnVm5yfn7bviDYSLkP/geTNJY11 qnbPmGePmvS5XIW0VkJX4pLoPSGN4y+7P7WCkN0HZNCNpQuiSIpvrgD7KO4h50MIMyKY UHig== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=WBPbu6fzTQCBv3Uj271eJyZZfp2x0vCya819l3taWTs=; b=s5CVQ45Auyj5UItqDG5ZjNE/KhszMFz9R2yGPNhTSjELWpFi9OMPvpw9wlo+aIKdDv rwh/zZyUz+8fmTxCTGuYU+WSwL4/zYpbQW8QWkSJFqpOr1f16su2uCJHczMAihbNlNK1 lKd48eSsXFXyzdNMRHVxV2UfQejdiqDeUajoybces7ttHXCgtPN1zOCfQw1QbLq50BhJ W5ltrkmQEak15vR0r1xxETtn1fymQFVT8T9nU0VxLKUZlFapej2WLD1qJnB0d36olGVb t06cho2o0f0JrrtQ4V8VOIAQ25D7mCavuEYndJch60bMB5eEx4tbJFcYAeh25OYsfVBv grUQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q7si11809861pgl.303.2018.12.03.03.14.31; Mon, 03 Dec 2018 03:14:45 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726353AbeLCLOQ (ORCPT + 99 others); Mon, 3 Dec 2018 06:14:16 -0500 Received: from relmlor1.renesas.com ([210.160.252.171]:59999 "EHLO relmlie5.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725907AbeLCLOQ (ORCPT ); Mon, 3 Dec 2018 06:14:16 -0500 Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie5.idc.renesas.com with ESMTP; 03 Dec 2018 20:13:38 +0900 Received: from vbox.ree.adwin.renesas.com (unknown [10.226.37.67]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id BB782402D031; Mon, 3 Dec 2018 20:13:35 +0900 (JST) From: Phil Edworthy To: Michael Turquette , Stephen Boyd , Russell King Cc: Andy Shevchenko , Geert Uytterhoeven , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Phil Edworthy Subject: [PATCH v9 2/2] clk: Add (devm_)clk_get_optional() functions Date: Mon, 3 Dec 2018 11:13:09 +0000 Message-Id: <20181203111309.3709-3-phil.edworthy@renesas.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181203111309.3709-1-phil.edworthy@renesas.com> References: <20181203111309.3709-1-phil.edworthy@renesas.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This adds clk_get_optional() and devm_clk_get_optional() functions to get optional clocks. They behave the same as (devm_)clk_get() except where there is no clock producer. In this case, instead of returning -ENOENT, the function returns NULL. This makes error checking simpler and allows clk_prepare_enable, etc to be called on the returned reference without additional checks. Signed-off-by: Phil Edworthy Reviewed-by: Andy Shevchenko --- v9: - Add brackets after devm_clk_get so people know it's a function. - Add kernel doc for clk_get_optional(). v8: - Remove else clause v7: - Instead of messing with the core functions, simply wrap them for the _optional() versions. By putting clk_get_optional() inline in the header file, we can get rid of the arch specific patches as well. v6: - Add doxygen style comment for devm_clk_get_optional() args v5: - No changes. v4: - No changes. v3: - No changes. --- drivers/clk/clk-devres.c | 11 +++++++++++ include/linux/clk.h | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/drivers/clk/clk-devres.c b/drivers/clk/clk-devres.c index 12c87457eca1..8e8893168676 100644 --- a/drivers/clk/clk-devres.c +++ b/drivers/clk/clk-devres.c @@ -34,6 +34,17 @@ struct clk *devm_clk_get(struct device *dev, const char *id) } EXPORT_SYMBOL(devm_clk_get); +struct clk *devm_clk_get_optional(struct device *dev, const char *id) +{ + struct clk *clk = devm_clk_get(dev, id); + + if (clk == ERR_PTR(-ENOENT)) + return NULL; + + return clk; +} +EXPORT_SYMBOL(devm_clk_get_optional); + struct clk_bulk_devres { struct clk_bulk_data *clks; int num_clks; diff --git a/include/linux/clk.h b/include/linux/clk.h index a7773b5c0b9f..d8bc1a856b39 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -383,6 +383,17 @@ int __must_check devm_clk_bulk_get_all(struct device *dev, */ struct clk *devm_clk_get(struct device *dev, const char *id); +/** + * devm_clk_get_optional - lookup and obtain a managed reference to an optional + * clock producer. + * @dev: device for clock "consumer" + * @id: clock consumer ID + * + * Behaves the same as devm_clk_get() except where there is no clock producer. + * In this case, instead of returning -ENOENT, the function returns NULL. + */ +struct clk *devm_clk_get_optional(struct device *dev, const char *id); + /** * devm_get_clk_from_child - lookup and obtain a managed reference to a * clock producer from child node. @@ -718,6 +729,12 @@ static inline struct clk *devm_clk_get(struct device *dev, const char *id) return NULL; } +static inline struct clk *devm_clk_get_optional(struct device *dev, + const char *id) +{ + return NULL; +} + static inline int __must_check devm_clk_bulk_get(struct device *dev, int num_clks, struct clk_bulk_data *clks) { @@ -862,6 +879,25 @@ static inline void clk_bulk_disable_unprepare(int num_clks, clk_bulk_unprepare(num_clks, clks); } +/** + * clk_get_optional - lookup and obtain a reference to an optional clock + * producer. + * @dev: device for clock "consumer" + * @id: clock consumer ID + * + * Behaves the same as clk_get() except where there is no clock producer. In + * this case, instead of returning -ENOENT, the function returns NULL. + */ +static inline struct clk *clk_get_optional(struct device *dev, const char *id) +{ + struct clk *clk = clk_get(dev, id); + + if (clk == ERR_PTR(-ENOENT)) + return NULL; + + return clk; +} + #if defined(CONFIG_OF) && defined(CONFIG_COMMON_CLK) struct clk *of_clk_get(struct device_node *np, int index); struct clk *of_clk_get_by_name(struct device_node *np, const char *name); -- 2.17.1