summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/module.h
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2015-11-25 15:59:21 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2015-11-25 15:35:59 -0800
commit0f37860de9a86d25f86ccc95631fa03fa766f31e (patch)
tree31854eac530903f1681a84dd81afd48387084424 /drivers/staging/greybus/module.h
parentdc3da5db2858c3fb33441988d1b6d56c06e53d7d (diff)
greybus: kill the endo
Remove the now unused endo and module code. Note that the never-implemented serial and version attributes of the endo can be implemented as svc attributes if needed. Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/module.h')
-rw-r--r--drivers/staging/greybus/module.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/drivers/staging/greybus/module.h b/drivers/staging/greybus/module.h
deleted file mode 100644
index 2b36fe9dfa7f..000000000000
--- a/drivers/staging/greybus/module.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Greybus module code
- *
- * Copyright 2014 Google Inc.
- *
- * Released under the GPLv2 only.
- */
-
-#ifndef __MODULE_H
-#define __MODULE_H
-
-/* Greybus "public" definitions" */
-struct gb_module {
- struct device dev;
- u8 module_id; /* Physical location within the Endo */
-};
-#define to_gb_module(d) container_of(d, struct gb_module, dev)
-
-struct gb_host_device;
-
-/* Greybus "private" definitions */
-struct gb_module *gb_module_find(struct gb_host_device *hd, u8 module_id);
-struct gb_module *gb_module_create(struct device *parent, u8 module_id);
-void gb_module_remove_all(struct gb_endo *endo);
-
-#endif /* __MODULE_H */