diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-09-26 09:29:53 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-09-26 09:29:53 +0200 |
commit | 2f4506180aa146e2da568b72f6c81fd72d7fa603 (patch) | |
tree | 66d7f936719b5f90d89827ba6ec9da0a19ff969a /plugins | |
parent | e21ec2652c54dbc8abbf84039b43fbd3be0b5ebc (diff) |
Disable HAL plugin for now
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/hal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/hal.c b/plugins/hal.c index 475d4956..42169694 100644 --- a/plugins/hal.c +++ b/plugins/hal.c @@ -35,6 +35,7 @@ #include "adapter.h" #include "logging.h" +#if 0 static uint32_t get_form_factor(LibHalContext *ctx) { char *formfactor; @@ -61,9 +62,11 @@ static uint32_t get_form_factor(LibHalContext *ctx) /* Computer major class */ return (1 << 8) | minor; } +#endif static int hal_probe(struct btd_adapter *adapter) { +#if 0 DBusConnection *conn; LibHalContext *ctx; @@ -89,6 +92,7 @@ static int hal_probe(struct btd_adapter *adapter) libhal_ctx_free(ctx); dbus_connection_unref(conn); +#endif return -ENODEV; } |