From 8c3a86904f21e6a6e4663f5cb0946a1ae57e8bcc Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sun, 30 Nov 2014 19:29:55 +0100 Subject: [PATCH] : Remove obsolete struct callout_handle. --- sys/sys/callout.h | 4 ---- sys/sys/proc.h | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/sys/sys/callout.h b/sys/sys/callout.h index 7254e33334..e01305a175 100644 --- a/sys/sys/callout.h +++ b/sys/sys/callout.h @@ -129,10 +129,6 @@ struct callout { #define CALLOUT_FLAGS_TO_CPU(flags) (((flags) & CALLOUT_CPU_MASK) >> 12) #define CALLOUT_CPU_TO_FLAGS(cpuid) ((cpuid) << 12) -struct callout_handle { - struct callout *callout; -}; - /* * WARNING! The caller is responsible for stabilizing the callout state, * our suggestion is to either manage the callout on the same cpu diff --git a/sys/sys/proc.h b/sys/sys/proc.h index b791ae958a..fe239b3848 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -44,7 +44,7 @@ #else -#include /* For struct callout_handle. */ +#include /* For struct callout. */ #include #include #include -- 2.41.0