projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a10b32d
)
jsm: clean up "serial: jsm: correctly support 4 8 port boards"
author
Andrew Morton
<akpm@linux-foundation.org>
Wed, 24 Jun 2009 17:34:43 +0000
(18:34 +0100)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Wed, 24 Jun 2009 16:55:50 +0000
(09:55 -0700)
Remove unneeded casts.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/serial/jsm/jsm_tty.c
patch
|
blob
|
history
diff --git
a/drivers/serial/jsm/jsm_tty.c
b/drivers/serial/jsm/jsm_tty.c
index
107ce2e
..
00f4577
100644
(file)
--- a/
drivers/serial/jsm/jsm_tty.c
+++ b/
drivers/serial/jsm/jsm_tty.c
@@
-467,7
+467,7
@@
int __devinit jsm_uart_port_init(struct jsm_board *brd)
printk(KERN_INFO "jsm: linemap is full, added device failed\n");
continue;
} else
- set_bit(
(int)
line, linemap);
+ set_bit(line, linemap);
brd->channels[i]->uart_port.line = line;
if (uart_add_one_port (&jsm_uart_driver, &brd->channels[i]->uart_port))
printk(KERN_INFO "jsm: add device failed\n");
@@
-503,7
+503,7
@@
int jsm_remove_uart_port(struct jsm_board *brd)
ch = brd->channels[i];
- clear_bit(
(int)(ch->uart_port.line)
, linemap);
+ clear_bit(
ch->uart_port.line
, linemap);
uart_remove_one_port(&jsm_uart_driver, &brd->channels[i]->uart_port);
}