summaryrefslogtreecommitdiffstats
path: root/common/hal-dummy.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2007-03-21 19:35:35 +0000
committerMarcel Holtmann <marcel@holtmann.org>2007-03-21 19:35:35 +0000
commit4128274b3b8c47a58f6895e1dbe5b1949887b9e1 (patch)
tree6249833d50bf99ca832d129ff3868272e53a0092 /common/hal-dummy.c
parent63ce134711eab575a35d2b4a5cbc62f1446d6a73 (diff)
Add functions for creating and removing HAL devices
Diffstat (limited to 'common/hal-dummy.c')
-rw-r--r--common/hal-dummy.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/common/hal-dummy.c b/common/hal-dummy.c
index 8d6be05f..a516ed1b 100644
--- a/common/hal-dummy.c
+++ b/common/hal-dummy.c
@@ -36,7 +36,12 @@ void hal_cleanup(void)
{
}
-int hal_add_device(struct hal_device *device)
+int hal_create_device(struct hal_device *device)
+{
+ return 0;
+}
+
+int hal_remove_device(struct hal_device *device)
{
return 0;
}