Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932590AbZKSEoB (ORCPT ); Wed, 18 Nov 2009 23:44:01 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932572AbZKSEn7 (ORCPT ); Wed, 18 Nov 2009 23:43:59 -0500 Received: from hera.kernel.org ([140.211.167.34]:35855 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932533AbZKSEnt (ORCPT ); Wed, 18 Nov 2009 23:43:49 -0500 Date: Thu, 19 Nov 2009 04:43:08 GMT From: tip-bot for Josh Stone Cc: linux-kernel@vger.kernel.org, paulus@samba.org, fche@redhat.com, hpa@zytor.com, mingo@redhat.com, a.p.zijlstra@chello.nl, arjan@linux.intel.com, jistone@redhat.com, fweisbec@gmail.com, tglx@linutronix.de, mingo@elte.hu Reply-To: mingo@redhat.com, hpa@zytor.com, fche@redhat.com, paulus@samba.org, linux-kernel@vger.kernel.org, arjan@linux.intel.com, a.p.zijlstra@chello.nl, jistone@redhat.com, fweisbec@gmail.com, tglx@linutronix.de, mingo@elte.hu In-Reply-To: <1258578415-14752-1-git-send-email-jistone@redhat.com> References: <1258578415-14752-1-git-send-email-jistone@redhat.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:tracing/core] tracing: Remove the stale include/trace/power.h Message-ID: Git-Commit-ID: 192dcf1d1775736627280a5dd4cb0f605b21857a X-Mailer: tip-git-log-daemon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2126 Lines: 68 Commit-ID: 192dcf1d1775736627280a5dd4cb0f605b21857a Gitweb: http://git.kernel.org/tip/192dcf1d1775736627280a5dd4cb0f605b21857a Author: Josh Stone AuthorDate: Wed, 18 Nov 2009 13:06:55 -0800 Committer: Ingo Molnar CommitDate: Thu, 19 Nov 2009 05:38:40 +0100 tracing: Remove the stale include/trace/power.h Commit 6161352 moved the power tracing to include/trace/events/, but left the old header behind. No one is using the old header, and its declarations are now incorrect, so it should be removed. Signed-off-by: Josh Stone Acked-by: Arjan van de Ven Cc: Frank Ch. Eigler Cc: Peter Zijlstra Cc: Paul Mackerras Cc: Frederic Weisbecker LKML-Reference: <1258578415-14752-1-git-send-email-jistone@redhat.com> Signed-off-by: Ingo Molnar --- include/trace/power.h | 32 -------------------------------- 1 files changed, 0 insertions(+), 32 deletions(-) diff --git a/include/trace/power.h b/include/trace/power.h deleted file mode 100644 index ef20466..0000000 --- a/include/trace/power.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef _TRACE_POWER_H -#define _TRACE_POWER_H - -#include -#include - -enum { - POWER_NONE = 0, - POWER_CSTATE = 1, - POWER_PSTATE = 2, -}; - -struct power_trace { - ktime_t stamp; - ktime_t end; - int type; - int state; -}; - -DECLARE_TRACE(power_start, - TP_PROTO(struct power_trace *it, unsigned int type, unsigned int state), - TP_ARGS(it, type, state)); - -DECLARE_TRACE(power_mark, - TP_PROTO(struct power_trace *it, unsigned int type, unsigned int state), - TP_ARGS(it, type, state)); - -DECLARE_TRACE(power_end, - TP_PROTO(struct power_trace *it), - TP_ARGS(it)); - -#endif /* _TRACE_POWER_H */ -- 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/