fix nas compatibility and overrides for newer wla2-g54l units
[openwrt/svn-archive/openwrt.git] / openwrt / package / openwrt / libshared / bcmtimer.h
index 560957cbfd7906c2d98accf8a1c465853e14d181..3db9e624f959178ec048ffbd8e9c38e0238c0183 100644 (file)
@@ -30,11 +30,13 @@ typedef void (*bcm_timer_cb)(bcm_timer_id id, int data);
 /* OS-independant interfaces, applications should call these functions only */
 int bcm_timer_module_init(int timer_entries, bcm_timer_module_id *module_id);
 int bcm_timer_module_cleanup(bcm_timer_module_id module_id);
+int bcm_timer_module_enable(bcm_timer_module_id module_id, int enable);
 int bcm_timer_create(bcm_timer_module_id module_id, bcm_timer_id *timer_id);
 int bcm_timer_delete(bcm_timer_id timer_id);
 int bcm_timer_gettime(bcm_timer_id timer_id, struct itimerspec *value);
 int bcm_timer_settime(bcm_timer_id timer_id, const struct itimerspec *value);
 int bcm_timer_connect(bcm_timer_id timer_id, bcm_timer_cb func, int data);
 int bcm_timer_cancel(bcm_timer_id timer_id);
+int bcm_timer_change_expirytime(bcm_timer_id timer_id, const struct itimerspec *timer_spec);
 
 #endif /* #ifndef __bcmtimer_h__ */