summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/bundle.h
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2015-04-06 15:49:36 +0530
committerGreg Kroah-Hartman <gregkh@google.com>2015-04-06 12:47:06 +0200
commit88e6d37c448062b86211e89d23348d952fd166c0 (patch)
treef7d2bb683a8349159a759b2e78821504f95a94c3 /drivers/staging/greybus/bundle.h
parent9f5f30e712430912f4cff65e97dd36f9b3bdbe4e (diff)
downloadlinux-88e6d37c448062b86211e89d23348d952fd166c0.tar.bz2
greybus: bundle: s/class_type/class
Alex suggested to name it class instead of class type. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/bundle.h')
-rw-r--r--drivers/staging/greybus/bundle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/bundle.h b/drivers/staging/greybus/bundle.h
index 1fcf5b8f2e53..3265a008e5df 100644
--- a/drivers/staging/greybus/bundle.h
+++ b/drivers/staging/greybus/bundle.h
@@ -17,7 +17,7 @@ struct gb_bundle {
struct device dev;
struct gb_interface *intf;
u8 id;
- u8 class_type;
+ u8 class;
u8 device_id;
struct list_head connections;
@@ -29,7 +29,7 @@ struct gb_bundle {
/* Greybus "private" definitions" */
struct gb_bundle *gb_bundle_create(struct gb_interface *intf, u8 bundle_id,
- u8 class_type);
+ u8 class);
void gb_bundle_destroy(struct gb_interface *intf);
int gb_bundle_init(struct gb_bundle *bundle, u8 device_id);
int gb_bundles_init(struct gb_interface *intf, u8 device_id);