diff options
author | Cong Ding <dinggnu@gmail.com> | 2013-01-12 05:42:07 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-15 22:49:36 -0800 |
commit | 37c44b52b102eb144fe4487f4a7ac39a70caee19 (patch) | |
tree | 6d1b1ec8231654e0a9b63f517e04b23d2994b32f /drivers/tty/rocket.c | |
parent | b9f8033f28448732612e64046b13087b08dd25f7 (diff) | |
download | linux-37c44b52b102eb144fe4487f4a7ac39a70caee19.tar.gz |
tty: add parenthesis to macro POLL_PERIOD in rocket.c
Macros should be enclosed in parenthesis
Signed-off-by: Cong Ding <dinggnu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/rocket.c')
-rw-r--r-- | drivers/tty/rocket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/rocket.c b/drivers/tty/rocket.c index 8073cc0dff59..69c16fc06e58 100644 --- a/drivers/tty/rocket.c +++ b/drivers/tty/rocket.c @@ -55,7 +55,7 @@ #undef REV_PCI_ORDER #undef ROCKET_DEBUG_IO -#define POLL_PERIOD HZ/100 /* Polling period .01 seconds (10ms) */ +#define POLL_PERIOD (HZ/100) /* Polling period .01 seconds (10ms) */ /****** Kernel includes ******/ |