summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/interface.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman2014-12-19 23:56:31 +0100
committerGreg Kroah-Hartman2014-12-20 00:35:44 +0100
commit4ab9b3c24b009fdc55465977153c5deffd31b0c0 (patch)
treef09ab0b4fa144eca8edb1aa1ef19acf7d15715a1 /drivers/staging/greybus/interface.h
parentgreybus: rename interface_block.[c|h] -> interface.[c|h] (diff)
downloadkernel-qcow2-linux-4ab9b3c24b009fdc55465977153c5deffd31b0c0.tar.gz
kernel-qcow2-linux-4ab9b3c24b009fdc55465977153c5deffd31b0c0.tar.xz
kernel-qcow2-linux-4ab9b3c24b009fdc55465977153c5deffd31b0c0.zip
greybus: interface: s/gb_interface_block/gb_interface/g
Rename struct gb_interface_block to struct gb_interface Lots of renaming, and variable renames as well (gb_ib->intf), but all should be sane with regards to the new naming scheme we are using. Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
Diffstat (limited to 'drivers/staging/greybus/interface.h')
-rw-r--r--drivers/staging/greybus/interface.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/drivers/staging/greybus/interface.h b/drivers/staging/greybus/interface.h
index 5c7cebc17e2e..52adc83dd19f 100644
--- a/drivers/staging/greybus/interface.h
+++ b/drivers/staging/greybus/interface.h
@@ -16,7 +16,7 @@
/* Greybus "public" definitions" */
-struct gb_interface_block {
+struct gb_interface {
struct device dev;
struct list_head bundles;
@@ -32,27 +32,26 @@ struct gb_interface_block {
struct greybus_host_device *hd;
};
-#define to_gb_interface_block(d) container_of(d, struct gb_interface_block, dev)
+#define to_gb_interface(d) container_of(d, struct gb_interface, dev)
-static inline void
-gb_interface_block_set_drvdata(struct gb_interface_block *gb_ib, void *data)
+static inline void gb_interface_set_drvdata(struct gb_interface *intf,
+ void *data)
{
- dev_set_drvdata(&gb_ib->dev, data);
+ dev_set_drvdata(&intf->dev, data);
}
-static inline void *
-gb_interface_block_get_drvdata(struct gb_interface_block *gb_ib)
+static inline void * gb_interface__get_drvdata(struct gb_interface *intf)
{
- return dev_get_drvdata(&gb_ib->dev);
+ return dev_get_drvdata(&intf->dev);
}
/* Greybus "private" definitions */
const struct greybus_interface_block_id *
- gb_ib_match_id(struct gb_interface_block *gb_ib,
- const struct greybus_interface_block_id *id);
+ gb_interface_match_id(struct gb_interface *intf,
+ const struct greybus_interface_block_id *id);
-struct gb_interface_block *gb_ib_find(struct greybus_host_device *hd,
- u8 module_id);
+struct gb_interface *gb_interface_find(struct greybus_host_device *hd,
+ u8 module_id);
#endif /* __INTERFACE_H */