summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/bundle.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2014-12-19 14:56:29 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2014-12-19 15:35:44 -0800
commite232b791d5a4c597626fbbd02f613a8a5474d7c4 (patch)
treebb4ea10dbac336c9aa8252dbb4e7ed83b7d16f70 /drivers/staging/greybus/bundle.c
parent1db0a5ff3a32c78082e7ef0264e71aa8afa3be96 (diff)
greybus: interface_block.c: rename the "interfaces" list "bundles"
Alex pointed out one rename I missed previously, this fixes up the interface_block list of bundles name. Reviewed-by: Alex Elder <elder@linaro.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
Diffstat (limited to 'drivers/staging/greybus/bundle.c')
-rw-r--r--drivers/staging/greybus/bundle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/greybus/bundle.c b/drivers/staging/greybus/bundle.c
index 885461598c94..bad6cf6d17fc 100644
--- a/drivers/staging/greybus/bundle.c
+++ b/drivers/staging/greybus/bundle.c
@@ -83,7 +83,7 @@ struct gb_bundle *gb_bundle_create(struct gb_interface_block *gb_ib, u8 interfac
}
spin_lock_irq(&gb_bundles_lock);
- list_add_tail(&bundle->links, &gb_ib->interfaces);
+ list_add_tail(&bundle->links, &gb_ib->bundles);
spin_unlock_irq(&gb_bundles_lock);
return bundle;
@@ -101,7 +101,7 @@ void gb_bundle_destroy(struct gb_interface_block *gb_ib)
return;
spin_lock_irq(&gb_bundles_lock);
- list_for_each_entry_safe(bundle, temp, &gb_ib->interfaces, links) {
+ list_for_each_entry_safe(bundle, temp, &gb_ib->bundles, links) {
list_del(&bundle->links);
gb_bundle_connections_exit(bundle);
device_del(&bundle->dev);
@@ -144,7 +144,7 @@ struct gb_bundle *gb_bundle_find(struct gb_interface_block *gb_ib, u8 bundle_id)
struct gb_bundle *bundle;
spin_lock_irq(&gb_bundles_lock);
- list_for_each_entry(bundle, &gb_ib->interfaces, links)
+ list_for_each_entry(bundle, &gb_ib->bundles, links)
if (bundle->id == bundle_id) {
spin_unlock_irq(&gb_bundles_lock);
return bundle;