From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756261Ab1HSWLW (ORCPT ); Fri, 19 Aug 2011 18:11:22 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:44355 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755515Ab1HSWLT (ORCPT ); Fri, 19 Aug 2011 18:11:19 -0400 From: Mark Brown To: "Rafael J. Wysocki\"" Cc: linux-kernel@vger.kernel.org, patches@opensource.wolfsonmicro.com, Mark Brown Subject: [PATCH] PM: Fix build due to missing notifier header Date: Fri, 19 Aug 2011 17:43:05 +0900 Message-Id: <1313743385-8394-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.5.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org pm_clock.h uses a struct notifier_block without including notifier.h which appears to have caused it to fall victim to some of the current header reorganisations in -next. Fix the resulting build failures. Signed-off-by: Mark Brown --- include/linux/pm_clock.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/pm_clock.h b/include/linux/pm_clock.h index f888013..8348866 100644 --- a/include/linux/pm_clock.h +++ b/include/linux/pm_clock.h @@ -10,6 +10,7 @@ #define _LINUX_PM_CLOCK_H #include +#include struct pm_clk_notifier_block { struct notifier_block nb; -- 1.7.5.4