Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751946Ab3FYMB2 (ORCPT ); Tue, 25 Jun 2013 08:01:28 -0400 Received: from mail-pb0-f53.google.com ([209.85.160.53]:65178 "EHLO mail-pb0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751044Ab3FYMBZ (ORCPT ); Tue, 25 Jun 2013 08:01:25 -0400 From: Sachin Kamat To: linux-kernel@vger.kernel.org Cc: john.stultz@linaro.org, tglx@linutronix.de, sachin.kamat@linaro.org, Jingchang Lu , Daniel Lezcano , Shawn Guo Subject: [PATCH 1/1] clocksource: vf_pit_timer: Fix build breakage Date: Tue, 25 Jun 2013 17:16:20 +0530 Message-Id: <1372160780-26172-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.9.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1279 Lines: 38 asm/sched_clock.h does not exist. Use linux/sched_clock.h instead. Without this patch we get the following build error (introduced by commit c1967249 ("clocksource: Add Freescale Vybrid pit timer support")): drivers/clocksource/vf_pit_timer.c:15:29: fatal error: asm/sched_clock.h: No such file or directory Signed-off-by: Sachin Kamat Cc: Jingchang Lu Cc: Daniel Lezcano Cc: Shawn Guo --- Compile tested only. --- drivers/clocksource/vf_pit_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/vf_pit_timer.c b/drivers/clocksource/vf_pit_timer.c index 598399d..587e020 100644 --- a/drivers/clocksource/vf_pit_timer.c +++ b/drivers/clocksource/vf_pit_timer.c @@ -12,7 +12,7 @@ #include #include #include -#include +#include /* * Each pit takes 0x10 Bytes register space -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/