summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/bundle.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2014-12-24 13:01:39 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2015-01-02 13:05:42 -0800
commit1b6ea0db016941a0919c17839c1772cceb1955c1 (patch)
treeeea1e5a489959bc5ba83a4205dfe36297f8ca441 /drivers/staging/greybus/bundle.c
parent900ceba9e480f49bb8fef688994b4fbdb1688b77 (diff)
greybus: bundle: create GB_DEVICE_ID_BAD
Use a "name" for when we don't have a valid device id yet, instead of a magic value of 0xff. Reported-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com> Reviewed-by: Alex Elder <elder@linaro.org>
Diffstat (limited to 'drivers/staging/greybus/bundle.c')
-rw-r--r--drivers/staging/greybus/bundle.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/staging/greybus/bundle.c b/drivers/staging/greybus/bundle.c
index 973ea39dc407..96153c54a687 100644
--- a/drivers/staging/greybus/bundle.c
+++ b/drivers/staging/greybus/bundle.c
@@ -91,9 +91,11 @@ struct gb_bundle *gb_bundle_create(struct gb_interface *intf, u8 interface_id)
bundle->intf = intf;
bundle->id = interface_id;
- bundle->device_id = 0xff; /* Invalid device id to start with */
INIT_LIST_HEAD(&bundle->connections);
+ /* Invalid device id to start with */
+ bundle->device_id = GB_DEVICE_ID_BAD;
+
/* Build up the bundle device structures and register it with the
* driver core */
bundle->dev.parent = &intf->dev;