]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/timer.h
time: clean hungarian notation from timers
[linux-2.6-omap-h63xx.git] / include / linux / timer.h
index 78cf899b440969a44049f7c052e2f9e167b47bd5..de0e71359ede60eadb302df0988300c97c790e3e 100644 (file)
@@ -5,7 +5,7 @@
 #include <linux/ktime.h>
 #include <linux/stddef.h>
 
-struct tvec_t_base_s;
+struct tvec_base;
 
 struct timer_list {
        struct list_head entry;
@@ -14,7 +14,7 @@ struct timer_list {
        void (*function)(unsigned long);
        unsigned long data;
 
-       struct tvec_t_base_s *base;
+       struct tvec_base *base;
 #ifdef CONFIG_TIMER_STATS
        void *start_site;
        char start_comm[16];
@@ -22,7 +22,7 @@ struct timer_list {
 #endif
 };
 
-extern struct tvec_t_base_s boot_tvec_bases;
+extern struct tvec_base boot_tvec_bases;
 
 #define TIMER_INITIALIZER(_function, _expires, _data) {                \
                .function = (_function),                        \