Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 15164
b: refs/heads/master
c: fec607f
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Dec 15, 2005
1 parent b041c21 commit 9ea9b24
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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: bc05d83bbf20a32eb24624726d1027aa960a573c
refs/heads/master: fec607fff973b1d7805c1bbce5834690857e7801
10 changes: 5 additions & 5 deletions trunk/drivers/sbus/char/uctrl.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ static void uctrl_do_txn(struct uctrl_txn *txn)
}
}

void uctrl_get_event_status()
void uctrl_get_event_status(void)
{
struct uctrl_driver *driver = &drv;
struct uctrl_txn txn;
Expand All @@ -318,7 +318,7 @@ void uctrl_get_event_status()
txn.opcode = READ_EVENT_STATUS;
txn.inbits = 0;
txn.outbits = 2;
txn.inbuf = 0;
txn.inbuf = NULL;
txn.outbuf = outbits;

uctrl_do_txn(&txn);
Expand All @@ -329,7 +329,7 @@ void uctrl_get_event_status()
dprintk(("ev is %x\n", driver->status.event_status));
}

void uctrl_get_external_status()
void uctrl_get_external_status(void)
{
struct uctrl_driver *driver = &drv;
struct uctrl_txn txn;
Expand All @@ -339,7 +339,7 @@ void uctrl_get_external_status()
txn.opcode = READ_EXTERNAL_STATUS;
txn.inbits = 0;
txn.outbits = 2;
txn.inbuf = 0;
txn.inbuf = NULL;
txn.outbuf = outbits;

uctrl_do_txn(&txn);
Expand Down Expand Up @@ -414,7 +414,7 @@ static void __exit ts102_uctrl_cleanup(void)
if (driver->irq)
free_irq(driver->irq, driver);
if (driver->regs)
driver->regs = 0;
driver->regs = NULL;
}

module_init(ts102_uctrl_init);
Expand Down

0 comments on commit 9ea9b24

Please sign in to comment.