From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751823Ab2DALc6 (ORCPT ); Sun, 1 Apr 2012 07:32:58 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:56046 "EHLO opensource.wolfsonmicro.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751731Ab2DALcp (ORCPT ); Sun, 1 Apr 2012 07:32:45 -0400 From: Mark Brown To: Russell King , Mike Turquette Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Mark Brown Subject: [PATCH 1/2] clk: Fix comment for end of CONFIG_COMMON_CLK section Date: Sun, 1 Apr 2012 12:32:39 +0100 Message-Id: <1333279960-8497-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org There is no else block so the #endif is for the end of the section for CONFIG_COMMON_CLK. Signed-off-by: Mark Brown --- include/linux/clk.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/clk.h b/include/linux/clk.h index b025272..4b27d15 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -81,7 +81,7 @@ int clk_notifier_register(struct clk *clk, struct notifier_block *nb); int clk_notifier_unregister(struct clk *clk, struct notifier_block *nb); -#endif /* !CONFIG_COMMON_CLK */ +#endif /* CONFIG_COMMON_CLK */ /** * clk_get - lookup and obtain a reference to a clock producer. -- 1.7.9.1