diff options
| author | Kurt Huwig <k.huwig@iku-ag.de> | 2005-12-25 00:13:08 +0100 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-24 15:37:00 -0800 | 
| commit | 01e33b5a2a153eec74dd87522e264948030b88c1 (patch) | |
| tree | ce6bb4a84cbec87a62834adadc3cb571bbafec82 /include/linux/n_r3964.h | |
| parent | cdcdb28623fb74d9564b102cd1cbe3854071e855 (diff) | |
| download | olio-linux-3.10-01e33b5a2a153eec74dd87522e264948030b88c1.tar.xz olio-linux-3.10-01e33b5a2a153eec74dd87522e264948030b88c1.zip  | |
[PATCH] n_r3964: fixed usage of HZ; removed bad include
Fix n_r3964 timeouts (hardcoded for 100Hz)
Also the include of <asm/termios.h> in 'n_r3964.h' is unnecessary and
prevents using the header file in any application that has to include
<termios.h> due to duplicate definition of 'struct termio'.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/n_r3964.h')
| -rw-r--r-- | include/linux/n_r3964.h | 20 | 
1 files changed, 13 insertions, 7 deletions
diff --git a/include/linux/n_r3964.h b/include/linux/n_r3964.h index 2352bcd31a0..db4f3776978 100644 --- a/include/linux/n_r3964.h +++ b/include/linux/n_r3964.h @@ -13,6 +13,10 @@   * L. Haag   *   * $Log: r3964.h,v $ + * Revision 1.4  2005/12/21 19:54:24  Kurt Huwig <kurt huwig de> + * Fixed HZ usage on 2.6 kernels + * Removed unnecessary include + *   * Revision 1.3  2001/03/18 13:02:24  dwmw2   * Fix timer usage, use spinlocks properly.   * @@ -45,9 +49,11 @@  #define __LINUX_N_R3964_H__  /* line disciplines for r3964 protocol */ -#include <asm/termios.h>  #ifdef __KERNEL__ + +#include <linux/param.h> +  /*   * Common ascii handshake characters:   */ @@ -58,14 +64,14 @@  #define NAK 0x15  /* - * Timeouts (msecs/10 msecs per timer interrupt): + * Timeouts (from milliseconds to jiffies)   */ -#define R3964_TO_QVZ 550/10 -#define R3964_TO_ZVZ 220/10 -#define R3964_TO_NO_BUF 400/10 -#define R3964_NO_TX_ROOM 100/10 -#define R3964_TO_RX_PANIC 4000/10 +#define R3964_TO_QVZ ((550)*HZ/1000) +#define R3964_TO_ZVZ ((220)*HZ/1000) +#define R3964_TO_NO_BUF ((400)*HZ/1000) +#define R3964_NO_TX_ROOM ((100)*HZ/1000) +#define R3964_TO_RX_PANIC ((4000)*HZ/1000)  #define R3964_MAX_RETRIES 5  #endif  |