Go to the documentation of this file.
14 #define RC_PID_INTERVAL 125
17 #define RC_PID_SMOOTHING_SHIFT 3
18 #define RC_PID_SMOOTHING (1 << RC_PID_SMOOTHING_SHIFT)
21 #define RC_PID_SHARPENING_FACTOR 0
22 #define RC_PID_SHARPENING_DURATION 0
25 #define RC_PID_ARITH_SHIFT 8
28 #define RC_PID_COEFF_P 15
30 #define RC_PID_COEFF_I 9
32 #define RC_PID_COEFF_D 15
39 #define RC_PID_TARGET_PF 14
42 #define RC_PID_NORM_OFFSET 3
45 #define RC_PID_FAST_START 0
48 #define RC_PID_DO_ARITH_RIGHT_SHIFT(x, y) \
49 ((x) < 0 ? -((-(x)) >> (y)) : (x) >> (y))
94 #define RC_PID_EVENT_RING_SIZE 32
164 s32 pf_sample,
s32 prop_err,
165 s32 int_err,
s32 der_err);
216 #ifdef CONFIG_MAC80211_DEBUGFS
221 struct dentry *events_entry;
272 #ifdef CONFIG_MAC80211_DEBUGFS