From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752174AbbHaJW3 (ORCPT ); Mon, 31 Aug 2015 05:22:29 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:32813 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750960AbbHaJW2 (ORCPT ); Mon, 31 Aug 2015 05:22:28 -0400 Message-ID: <1441012943.22251.1.camel@ingics.com> Subject: [PATCH] reset: Add (devm_)reset_control_get stub functions From: Axel Lin To: Philipp Zabel Cc: Mark Brown , Takashi Iwai , Arnaud Pouliquen , Liam Girdwood , alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org Date: Mon, 31 Aug 2015 17:22:23 +0800 Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.12.10-0ubuntu1~14.10.1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org So the drivers can be compiled with CONFIG_RESET_CONTROLLER disabled. Signed-off-by: Axel Lin --- include/linux/reset.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/linux/reset.h b/include/linux/reset.h index da5602b..cd42c1b 100644 --- a/include/linux/reset.h +++ b/include/linux/reset.h @@ -74,6 +74,18 @@ static inline int device_reset_optional(struct device *dev) return -ENOSYS; } +static inline struct reset_control *reset_control_get( + struct device *dev, const char *id) +{ + return ERR_PTR(-ENOSYS); +} + +static inline struct reset_control *devm_reset_control_get( + struct device *dev, const char *id) +{ + return ERR_PTR(-ENOSYS); +} + static inline struct reset_control *reset_control_get_optional( struct device *dev, const char *id) { -- 2.1.0