Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61649
b: refs/heads/master
c: e3aded3
h: refs/heads/master
i:
  61647: bf86437
v: v3
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Jul 19, 2007
1 parent 6cfebfd commit f0d3498
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: 7ac674f52778b95450509357435320be1d795248
refs/heads/master: e3aded3cc289113c7bc729ef4cb75e56d9aa71be
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/sc/card.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ int sendmessage(int card, unsigned int procid, unsigned int type,
int receivemessage(int card, RspMessage *rspmsg);
int sc_ioctl(int card, scs_ioctl *data);
int setup_buffers(int card, int c);
void check_reset(unsigned long data);
void sc_check_reset(unsigned long data);
void check_phystat(unsigned long data);

#endif /* CARD_H */
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/sc/command.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ int reset(int card)

spin_lock_irqsave(&sc_adapter[card]->lock, flags);
init_timer(&sc_adapter[card]->reset_timer);
sc_adapter[card]->reset_timer.function = check_reset;
sc_adapter[card]->reset_timer.function = sc_check_reset;
sc_adapter[card]->reset_timer.data = card;
sc_adapter[card]->reset_timer.expires = jiffies + CHECKRESET_TIME;
add_timer(&sc_adapter[card]->reset_timer);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/isdn/sc/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static void setup_ports(int card)
* Then, check to see if the signate has been set. Next, set the
* signature to a known value and issue a startproc if needed.
*/
void check_reset(unsigned long data)
void sc_check_reset(unsigned long data)
{
unsigned long flags;
unsigned long sig;
Expand Down

0 comments on commit f0d3498

Please sign in to comment.