greybus: bundle: s/class_type/class
authorViresh Kumar <viresh.kumar@linaro.org>
Mon, 6 Apr 2015 10:19:36 +0000 (15:49 +0530)
committerGreg Kroah-Hartman <gregkh@google.com>
Mon, 6 Apr 2015 10:47:06 +0000 (12:47 +0200)
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>
drivers/staging/greybus/bundle.c
drivers/staging/greybus/bundle.h
drivers/staging/greybus/greybus_id.h
drivers/staging/greybus/greybus_manifest.h
drivers/staging/greybus/manifest.c

index ce7db9734dad3b1da5d2f45042f3e0a584a25e8e..3f1aa6490e48b7a6c96910ea3f8e1a47d03af868 100644 (file)
@@ -22,18 +22,18 @@ static ssize_t device_id_show(struct device *dev, struct device_attribute *attr,
 }
 static DEVICE_ATTR_RO(device_id);
 
-static ssize_t class_type_show(struct device *dev, struct device_attribute *attr,
-                             char *buf)
+static ssize_t class_show(struct device *dev, struct device_attribute *attr,
+                         char *buf)
 {
        struct gb_bundle *bundle = to_gb_bundle(dev);
 
-       return sprintf(buf, "%d\n", bundle->class_type);
+       return sprintf(buf, "%d\n", bundle->class);
 }
-static DEVICE_ATTR_RO(class_type);
+static DEVICE_ATTR_RO(class);
 
 static struct attribute *bundle_attrs[] = {
        &dev_attr_device_id.attr,
-       &dev_attr_class_type.attr,
+       &dev_attr_class.attr,
        NULL,
 };
 
@@ -66,8 +66,8 @@ static int gb_bundle_match_one_id(struct gb_bundle *bundle,
            (id->unique_id != bundle->intf->unique_id))
                return 0;
 
-       if ((id->match_flags & GREYBUS_ID_MATCH_CLASS_TYPE) &&
-           (id->class_type != bundle->class_type))
+       if ((id->match_flags & GREYBUS_ID_MATCH_CLASS) &&
+           (id->class != bundle->class))
                return 0;
 
        return 1;
@@ -80,7 +80,7 @@ gb_bundle_match_id(struct gb_bundle *bundle,
        if (id == NULL)
                return NULL;
 
-       for (; id->vendor || id->product || id->unique_id || id->class_type ||
+       for (; id->vendor || id->product || id->unique_id || id->class ||
               id->driver_info; id++) {
                if (gb_bundle_match_one_id(bundle, id))
                        return id;
@@ -129,7 +129,7 @@ void gb_bundle_bind_protocols(void)
  * pointer if a failure occurs due to memory exhaustion.
  */
 struct gb_bundle *gb_bundle_create(struct gb_interface *intf, u8 bundle_id,
-                                  u8 class_type)
+                                  u8 class)
 {
        struct gb_bundle *bundle;
        int retval;
@@ -140,7 +140,7 @@ struct gb_bundle *gb_bundle_create(struct gb_interface *intf, u8 bundle_id,
 
        bundle->intf = intf;
        bundle->id = bundle_id;
-       bundle->class_type = class_type;
+       bundle->class = class;
        INIT_LIST_HEAD(&bundle->connections);
 
        /* Invalid device id to start with */
index 1fcf5b8f2e537d8d2f8f24fdb3429ebc8bd80152..3265a008e5df5384bc1048c450cf8c719701f074 100644 (file)
@@ -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);
index 4204a8c7ca74d28f942d275efa542b051f68e4ed..8e76d4218c14b0093905c5a63ab447425c67fe72 100644 (file)
@@ -13,7 +13,7 @@ struct greybus_bundle_id {
        __u16   match_flags;
        __u16   vendor;
        __u16   product;
-       __u8    class_type;
+       __u8    class;
        __u64   unique_id;
 
        kernel_ulong_t  driver_info __aligned(sizeof(kernel_ulong_t));
@@ -23,6 +23,6 @@ struct greybus_bundle_id {
 #define GREYBUS_ID_MATCH_VENDOR                BIT(0)
 #define GREYBUS_ID_MATCH_PRODUCT       BIT(1)
 #define GREYBUS_ID_MATCH_SERIAL                BIT(2)
-#define GREYBUS_ID_MATCH_CLASS_TYPE    BIT(3)
+#define GREYBUS_ID_MATCH_CLASS         BIT(3)
 
 #endif /* __LINUX_GREYBUS_ID_H */
index a3386836d6d760fd649bdbc7184f1fdf79d1cf7d..e855adab3c226a1d09aa33cd9570397a03587691 100644 (file)
@@ -93,7 +93,7 @@ struct greybus_descriptor_interface {
 };
 
 /*
- * An bundle descriptor defines an identification number and a class type for
+ * An bundle descriptor defines an identification number and a class for
  * each bundle.
  *
  * @id: Uniquely identifies a bundle within a interface, its sole purpose is to
@@ -105,7 +105,7 @@ struct greybus_descriptor_interface {
  * encode the device id and module number in UniPro packets
  * that use the bundle.
  *
- * @class_type: It is used by kernel to know the functionality provided by the
+ * @class: It is used by kernel to know the functionality provided by the
  * bundle and will be matched against drivers functinality while probing greybus
  * driver. It should contain one of the values defined in
  * 'enum greybus_class_type'.
@@ -113,7 +113,7 @@ struct greybus_descriptor_interface {
  */
 struct greybus_descriptor_bundle {
        __u8    id;     /* interface-relative id (0..) */
-       __u8    class_type;
+       __u8    class;
 };
 
 /*
index 12eee3adf91acffca0b22e3d2b28d7b48d60c8d7..d6cafebefd2629f296db4086880d2e415e897409 100644 (file)
@@ -261,7 +261,7 @@ static u32 gb_manifest_parse_bundles(struct gb_interface *intf)
                /* Found one.  Set up its bundle structure*/
                desc_bundle = descriptor->data;
                bundle = gb_bundle_create(intf, desc_bundle->id,
-                                         desc_bundle->class_type);
+                                         desc_bundle->class);
                if (!bundle)
                        return 0;       /* Error */