diff options
author | Adrian McMenamin <adrian@newgolddream.dyndns.info> | 2008-06-15 20:48:09 +0100 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-07-28 18:10:30 +0900 |
commit | 306cfd630a4d121cf4e08b894d8b4c4cf106e57e (patch) | |
tree | 1d89d99201c2a4f317c2bf4ae5fa391e45d2349f /include/linux/maple.h | |
parent | 4cec1a37ba7d9dce6ed5d8259b95272100a98b1f (diff) |
maple: tidy maple_driver code by removing redundant connect/disconnect
The connect and disconnect functions are unnecessary - everything they do can be
accomplished in the initial probe - so remove them.
Signed-off-by: Adrian McMenamin <adrian@mcmen.demon.co.uk>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/linux/maple.h')
-rw-r--r-- | include/linux/maple.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/maple.h b/include/linux/maple.h index d31e36ebb43..523a286bb47 100644 --- a/include/linux/maple.h +++ b/include/linux/maple.h @@ -61,8 +61,6 @@ struct maple_device { struct maple_driver { unsigned long function; - int (*connect) (struct maple_device * dev); - void (*disconnect) (struct maple_device * dev); struct device_driver drv; }; |