summaryrefslogtreecommitdiffstats
path: root/src/driver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/driver.h')
-rw-r--r--src/driver.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/driver.h b/src/driver.h
index 6ed56d53..a69ebab1 100644
--- a/src/driver.h
+++ b/src/driver.h
@@ -39,14 +39,12 @@ int btd_register_device_driver(struct btd_device_driver *driver);
void btd_unregister_device_driver(struct btd_device_driver *driver);
GSList *btd_get_device_drivers(void);
-struct btd_adapter;
+struct adapter;
struct btd_adapter_driver {
const char *name;
- int (*probe) (struct btd_adapter_driver *driver,
- struct btd_adapter *adapter);
- void (*remove) (struct btd_adapter_driver *driver,
- struct btd_adapter *adapter);
+ int (*probe) (struct adapter *adapter);
+ void (*remove) (struct adapter *adapter);
};
int btd_register_adapter_driver(struct btd_adapter_driver *driver);