Skip to content

Commit

Permalink
tty: add parenthesis to macro POLL_PERIOD in rocket.c
Browse files Browse the repository at this point in the history
Macros should be enclosed in parenthesis

Signed-off-by: Cong Ding <dinggnu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Cong Ding authored and Greg Kroah-Hartman committed Jan 16, 2013
1 parent b9f8033 commit 37c44b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/tty/rocket.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 ******/

Expand Down

0 comments on commit 37c44b5

Please sign in to comment.