Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 154091
b: refs/heads/master
c: 2a13373
h: refs/heads/master
i:
  154089: e6e71a6
  154087: f1c9ba2
v: v3
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Jun 24, 2009
1 parent 8e43088 commit bab7aef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a10b32db34898d0db58a58ef76a70c374931bbff
refs/heads/master: 2a13373cf84477460365c32842cda9a6374b845d
4 changes: 2 additions & 2 deletions trunk/drivers/serial/jsm/jsm_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit bab7aef

Please sign in to comment.