diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2005-12-06 05:54:54 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-15 13:01:28 -0500 |
| commit | fec607fff973b1d7805c1bbce5834690857e7801 (patch) | |
| tree | 1323045cec53c3dbb55b7591711b20970e609198 /drivers/sbus | |
| parent | bc05d83bbf20a32eb24624726d1027aa960a573c (diff) | |
[PATCH] sbus/char/uctrl: missing prototypes and NULL noise removal
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/sbus')
| -rw-r--r-- | drivers/sbus/char/uctrl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/sbus/char/uctrl.c b/drivers/sbus/char/uctrl.c index 858cc683f85c..e2d9a7c85427 100644 --- a/drivers/sbus/char/uctrl.c +++ b/drivers/sbus/char/uctrl.c | |||
| @@ -309,7 +309,7 @@ static void uctrl_do_txn(struct uctrl_txn *txn) | |||
| 309 | } | 309 | } |
| 310 | } | 310 | } |
| 311 | 311 | ||
| 312 | void uctrl_get_event_status() | 312 | void uctrl_get_event_status(void) |
| 313 | { | 313 | { |
| 314 | struct uctrl_driver *driver = &drv; | 314 | struct uctrl_driver *driver = &drv; |
| 315 | struct uctrl_txn txn; | 315 | struct uctrl_txn txn; |
| @@ -318,7 +318,7 @@ void uctrl_get_event_status() | |||
| 318 | txn.opcode = READ_EVENT_STATUS; | 318 | txn.opcode = READ_EVENT_STATUS; |
| 319 | txn.inbits = 0; | 319 | txn.inbits = 0; |
| 320 | txn.outbits = 2; | 320 | txn.outbits = 2; |
| 321 | txn.inbuf = 0; | 321 | txn.inbuf = NULL; |
| 322 | txn.outbuf = outbits; | 322 | txn.outbuf = outbits; |
| 323 | 323 | ||
| 324 | uctrl_do_txn(&txn); | 324 | uctrl_do_txn(&txn); |
| @@ -329,7 +329,7 @@ void uctrl_get_event_status() | |||
| 329 | dprintk(("ev is %x\n", driver->status.event_status)); | 329 | dprintk(("ev is %x\n", driver->status.event_status)); |
| 330 | } | 330 | } |
| 331 | 331 | ||
| 332 | void uctrl_get_external_status() | 332 | void uctrl_get_external_status(void) |
| 333 | { | 333 | { |
| 334 | struct uctrl_driver *driver = &drv; | 334 | struct uctrl_driver *driver = &drv; |
| 335 | struct uctrl_txn txn; | 335 | struct uctrl_txn txn; |
| @@ -339,7 +339,7 @@ void uctrl_get_external_status() | |||
| 339 | txn.opcode = READ_EXTERNAL_STATUS; | 339 | txn.opcode = READ_EXTERNAL_STATUS; |
| 340 | txn.inbits = 0; | 340 | txn.inbits = 0; |
| 341 | txn.outbits = 2; | 341 | txn.outbits = 2; |
| 342 | txn.inbuf = 0; | 342 | txn.inbuf = NULL; |
| 343 | txn.outbuf = outbits; | 343 | txn.outbuf = outbits; |
| 344 | 344 | ||
| 345 | uctrl_do_txn(&txn); | 345 | uctrl_do_txn(&txn); |
| @@ -414,7 +414,7 @@ static void __exit ts102_uctrl_cleanup(void) | |||
| 414 | if (driver->irq) | 414 | if (driver->irq) |
| 415 | free_irq(driver->irq, driver); | 415 | free_irq(driver->irq, driver); |
| 416 | if (driver->regs) | 416 | if (driver->regs) |
| 417 | driver->regs = 0; | 417 | driver->regs = NULL; |
| 418 | } | 418 | } |
| 419 | 419 | ||
| 420 | module_init(ts102_uctrl_init); | 420 | module_init(ts102_uctrl_init); |
