bundle             58 arch/ia64/include/asm/fpswa.h typedef fpswa_ret_t (*efi_fpswa_t) (unsigned long trap_type, void *bundle, unsigned long *ipsr,
bundle             93 arch/ia64/include/asm/kprobes.h 	bundle_t bundle;
bundle             58 arch/ia64/kernel/brl_emu.c 	unsigned long bundle[2];
bundle             70 arch/ia64/kernel/brl_emu.c 	if (copy_from_user(bundle, (void *) (regs->cr_iip), sizeof(bundle)))
bundle             79 arch/ia64/kernel/brl_emu.c 	if ((bundle[0] & 0x1e) != 0x4) return rv;
bundle             81 arch/ia64/kernel/brl_emu.c 	opcode = (bundle[1] >> 60);
bundle             82 arch/ia64/kernel/brl_emu.c 	btype = ((bundle[1] >> 29) & 0x7);
bundle             83 arch/ia64/kernel/brl_emu.c 	qp = ((bundle[1] >> 23) & 0x3f);
bundle             84 arch/ia64/kernel/brl_emu.c 	offset = ((bundle[1] & 0x0800000000000000L) << 4)
bundle             85 arch/ia64/kernel/brl_emu.c 		| ((bundle[1] & 0x00fffff000000000L) >> 32)
bundle             86 arch/ia64/kernel/brl_emu.c 		| ((bundle[1] & 0x00000000007fffffL) << 40)
bundle             87 arch/ia64/kernel/brl_emu.c 		| ((bundle[0] & 0xffff000000000000L) >> 24);
bundle            292 arch/ia64/kernel/kprobes.c 	bundle_t *bundle = &p->opcode.bundle;
bundle            302 arch/ia64/kernel/kprobes.c 		bundle->quad0.slot0 = break_inst;
bundle            305 arch/ia64/kernel/kprobes.c 		bundle->quad0.slot1_p0 = break_inst;
bundle            306 arch/ia64/kernel/kprobes.c 		bundle->quad1.slot1_p1 = break_inst >> (64-46);
bundle            309 arch/ia64/kernel/kprobes.c 		bundle->quad1.slot2 = break_inst;
bundle            321 arch/ia64/kernel/kprobes.c static void __kprobes get_kprobe_inst(bundle_t *bundle, uint slot,
bundle            327 arch/ia64/kernel/kprobes.c 	template = bundle->quad0.template;
bundle            331 arch/ia64/kernel/kprobes.c 		*major_opcode = (bundle->quad0.slot0 >> SLOT0_OPCODE_SHIFT);
bundle            332 arch/ia64/kernel/kprobes.c 		*kprobe_inst = bundle->quad0.slot0;
bundle            335 arch/ia64/kernel/kprobes.c 		*major_opcode = (bundle->quad1.slot1_p1 >> SLOT1_p1_OPCODE_SHIFT);
bundle            336 arch/ia64/kernel/kprobes.c 		kprobe_inst_p0 = bundle->quad0.slot1_p0;
bundle            337 arch/ia64/kernel/kprobes.c 		kprobe_inst_p1 = bundle->quad1.slot1_p1;
bundle            341 arch/ia64/kernel/kprobes.c 		*major_opcode = (bundle->quad1.slot2 >> SLOT2_OPCODE_SHIFT);
bundle            342 arch/ia64/kernel/kprobes.c 		*kprobe_inst = bundle->quad1.slot2;
bundle            494 arch/ia64/kernel/kprobes.c static int __kprobes __is_ia64_break_inst(bundle_t *bundle, uint slot)
bundle            497 arch/ia64/kernel/kprobes.c 	unsigned int template = bundle->quad0.template;
bundle            505 arch/ia64/kernel/kprobes.c 	get_kprobe_inst(bundle, slot, &kprobe_inst, &major_opcode);
bundle            525 arch/ia64/kernel/kprobes.c static int __kprobes can_boost(bundle_t *bundle, uint slot,
bundle            528 arch/ia64/kernel/kprobes.c 	unsigned int template = bundle->quad0.template;
bundle            532 arch/ia64/kernel/kprobes.c 		    __is_ia64_break_inst(bundle, slot))
bundle            551 arch/ia64/kernel/kprobes.c 	if (can_boost(&p->ainsn.insn[0].bundle, slot, addr)) {
bundle            552 arch/ia64/kernel/kprobes.c 		set_brl_inst(&p->ainsn.insn[1].bundle, (bundle_t *)addr + 1);
bundle            570 arch/ia64/kernel/kprobes.c 	bundle_t *bundle;
bundle            573 arch/ia64/kernel/kprobes.c 	bundle = &((kprobe_opcode_t *)kprobe_addr)->bundle;
bundle            574 arch/ia64/kernel/kprobes.c 	template = bundle->quad0.template;
bundle            584 arch/ia64/kernel/kprobes.c 	get_kprobe_inst(bundle, slot, &kprobe_inst, &major_opcode);
bundle            609 arch/ia64/kernel/kprobes.c 	dest = &((kprobe_opcode_t *)arm_addr)->bundle;
bundle            610 arch/ia64/kernel/kprobes.c 	src = &p->opcode.bundle;
bundle            636 arch/ia64/kernel/kprobes.c 	dest = &((kprobe_opcode_t *)arm_addr)->bundle;
bundle            638 arch/ia64/kernel/kprobes.c 	src = &p->ainsn.insn->bundle;
bundle            671 arch/ia64/kernel/kprobes.c 	unsigned long bundle_addr = (unsigned long) (&p->ainsn.insn->bundle);
bundle            676 arch/ia64/kernel/kprobes.c 	template = p->ainsn.insn->bundle.quad0.template;
bundle            739 arch/ia64/kernel/kprobes.c 	unsigned long bundle_addr = (unsigned long) &p->ainsn.insn->bundle;
bundle            761 arch/ia64/kernel/kprobes.c 	bundle_t bundle;
bundle            763 arch/ia64/kernel/kprobes.c 	memcpy(&bundle, kprobe_addr, sizeof(bundle_t));
bundle            765 arch/ia64/kernel/kprobes.c 	return __is_ia64_break_inst(&bundle, slot);
bundle            848 arch/ia64/kernel/kprobes.c 		regs->cr_iip = (unsigned long)&p->ainsn.insn->bundle & ~0xFULL;
bundle            216 arch/ia64/kernel/module.c  	unsigned char bundle[2][16];
bundle            237 arch/ia64/kernel/module.c 	if (apply_imm64(mod, (struct insn *) (plt->bundle[0] + 2), target_gp)
bundle            238 arch/ia64/kernel/module.c 	    && apply_imm60(mod, (struct insn *) (plt->bundle[1] + 2),
bundle            239 arch/ia64/kernel/module.c 			   (target_ip - (int64_t) plt->bundle[1]) / 16))
bundle            247 arch/ia64/kernel/module.c 	uint64_t b0, b1, *b = (uint64_t *) plt->bundle[1];
bundle            254 arch/ia64/kernel/module.c 	return (long) plt->bundle[1] + 16*off;
bundle            261 arch/ia64/kernel/module.c  	unsigned char bundle[3][16];
bundle            287 arch/ia64/kernel/module.c 	if (apply_imm64(mod, (struct insn *) (plt->bundle[0] + 2), target_ip)
bundle            288 arch/ia64/kernel/module.c 	    && apply_imm64(mod, (struct insn *) (plt->bundle[1] + 2), target_gp))
bundle            296 arch/ia64/kernel/module.c 	uint64_t b0, b1, *b = (uint64_t *) plt->bundle[0];
bundle            560 arch/ia64/kernel/module.c 	while (plt->bundle[0][0]) {
bundle            659 arch/ia64/kernel/module.c 			val -= bundle(location);
bundle            698 arch/ia64/kernel/module.c 		val -= bundle(location);
bundle            233 arch/ia64/kernel/traps.c fp_emulate (int fp_fault, void *bundle, long *ipsr, long *fpsr, long *isr, long *pr, long *ifs,
bundle            263 arch/ia64/kernel/traps.c 	ret = (*fpswa_interface->fpswa)((unsigned long) fp_fault, bundle,
bundle            286 arch/ia64/kernel/traps.c 	long exception, bundle[2];
bundle            292 arch/ia64/kernel/traps.c 	if (copy_from_user(bundle, (void __user *) fault_ip, sizeof(bundle)))
bundle            328 arch/ia64/kernel/traps.c 	exception = fp_emulate(fp_fault, bundle, &regs->cr_ipsr, &regs->ar_fpsr, &isr, &regs->pr,
bundle           1299 arch/ia64/kernel/unaligned.c 	unsigned long bundle[2];
bundle           1376 arch/ia64/kernel/unaligned.c 	if (__copy_from_user(bundle, (void __user *) regs->cr_iip, 16))
bundle           1384 arch/ia64/kernel/unaligned.c 	      case 0: u.l = (bundle[0] >>  5); break;
bundle           1385 arch/ia64/kernel/unaligned.c 	      case 1: u.l = (bundle[0] >> 46) | (bundle[1] << 18); break;
bundle           1386 arch/ia64/kernel/unaligned.c 	      case 2: u.l = (bundle[1] >> 23); break;
bundle             84 drivers/dma/ioat/hw.h 			unsigned int bundle:1;
bundle            116 drivers/dma/ioat/hw.h 			unsigned int bundle:1;
bundle            163 drivers/dma/ioat/hw.h 			unsigned int bundle:1;
bundle            212 drivers/dma/ioat/hw.h 			unsigned int bundle:1;
bundle           5699 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 	} *bundle;
bundle           5701 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 	bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
bundle           5703 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 	if (!bundle) {
bundle           5738 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->surface_updates[planes_count].surface = dc_plane;
bundle           5740 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->surface_updates[planes_count].gamma = dc_plane->gamma_correction;
bundle           5741 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->surface_updates[planes_count].in_transfer_func = dc_plane->in_transfer_func;
bundle           5745 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				     &bundle->scaling_infos[planes_count]);
bundle           5747 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->surface_updates[planes_count].scaling_info =
bundle           5748 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			&bundle->scaling_infos[planes_count];
bundle           5788 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			&bundle->plane_infos[planes_count],
bundle           5789 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			&bundle->flip_addrs[planes_count].address,
bundle           5794 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				 bundle->plane_infos[planes_count].dcc.enable);
bundle           5796 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->surface_updates[planes_count].plane_info =
bundle           5797 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			&bundle->plane_infos[planes_count];
bundle           5803 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->flip_addrs[planes_count].flip_immediate =
bundle           5808 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->flip_addrs[planes_count].flip_timestamp_in_us = div_u64(timestamp_ns, 1000);
bundle           5809 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->surface_updates[planes_count].flip_addr = &bundle->flip_addrs[planes_count];
bundle           5810 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		bundle->surface_updates[planes_count].surface = dc_plane;
bundle           5812 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 		if (!bundle->surface_updates[planes_count].surface) {
bundle           5824 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				bundle->flip_addrs[planes_count].flip_timestamp_in_us);
bundle           5828 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				 bundle->flip_addrs[planes_count].address.grph.addr.high_part,
bundle           5829 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				 bundle->flip_addrs[planes_count].address.grph.addr.low_part);
bundle           5889 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 				bundle->stream_update.vrr_infopacket =
bundle           5898 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.src = acrtc_state->stream->src;
bundle           5899 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.dst = acrtc_state->stream->dst;
bundle           5907 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.gamut_remap =
bundle           5909 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.output_csc_transform =
bundle           5911 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.out_transfer_func =
bundle           5917 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 			bundle->stream_update.abm_level = &acrtc_state->abm_level;
bundle           5935 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 						     bundle->surface_updates,
bundle           5938 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 						     &bundle->stream_update,
bundle           5952 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 	kfree(bundle);
bundle           1393 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.c 	grctx->bundle(info);
bundle           1592 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.c 	.bundle = gf100_grctx_generate_bundle,
bundle             41 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf100.h 	void (*bundle)(struct gf100_grctx *);
bundle             93 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf104.c 	.bundle = gf100_grctx_generate_bundle,
bundle            794 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf108.c 	.bundle = gf100_grctx_generate_bundle,
bundle            341 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf110.c 	.bundle = gf100_grctx_generate_bundle,
bundle            293 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf117.c 	.bundle = gf100_grctx_generate_bundle,
bundle            509 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgf119.c 	.bundle = gf100_grctx_generate_bundle,
bundle            988 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk104.c 	.bundle = gk104_grctx_generate_bundle,
bundle            835 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110.c 	.bundle = gk104_grctx_generate_bundle,
bundle             84 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk110b.c 	.bundle = gk104_grctx_generate_bundle,
bundle            550 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk208.c 	.bundle = gk104_grctx_generate_bundle,
bundle             64 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk20a.c 	grctx->bundle(info);
bundle             71 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgk20a.c 	.bundle = gk104_grctx_generate_bundle,
bundle            975 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c 	.bundle = gm107_grctx_generate_bundle,
bundle            108 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm200.c 	.bundle = gm107_grctx_generate_bundle,
bundle             67 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm20b.c 	grctx->bundle(info);
bundle             74 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm20b.c 	.bundle = gm107_grctx_generate_bundle,
bundle            120 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp100.c 	.bundle = gm107_grctx_generate_bundle,
bundle             98 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp102.c 	.bundle = gm107_grctx_generate_bundle,
bundle             28 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp104.c 	.bundle = gm107_grctx_generate_bundle,
bundle             36 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgp107.c 	.bundle = gm107_grctx_generate_bundle,
bundle            196 drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgv100.c 	.bundle = gm107_grctx_generate_bundle,
bundle             15 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle             17 drivers/greybus/bundle.c 	return sprintf(buf, "0x%02x\n", bundle->class);
bundle             24 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle             26 drivers/greybus/bundle.c 	return sprintf(buf, "%u\n", bundle->id);
bundle             33 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle             35 drivers/greybus/bundle.c 	if (!bundle->state)
bundle             38 drivers/greybus/bundle.c 	return sprintf(buf, "%s\n", bundle->state);
bundle             44 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle             46 drivers/greybus/bundle.c 	kfree(bundle->state);
bundle             47 drivers/greybus/bundle.c 	bundle->state = kstrdup(buf, GFP_KERNEL);
bundle             48 drivers/greybus/bundle.c 	if (!bundle->state)
bundle             52 drivers/greybus/bundle.c 	sysfs_notify(&bundle->dev.kobj, NULL, "state");
bundle             65 drivers/greybus/bundle.c ATTRIBUTE_GROUPS(bundle);
bundle             70 drivers/greybus/bundle.c 	struct gb_bundle *bundle;
bundle             72 drivers/greybus/bundle.c 	list_for_each_entry(bundle, &intf->bundles, links) {
bundle             73 drivers/greybus/bundle.c 		if (bundle->id == bundle_id)
bundle             74 drivers/greybus/bundle.c 			return bundle;
bundle             82 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle             84 drivers/greybus/bundle.c 	trace_gb_bundle_release(bundle);
bundle             86 drivers/greybus/bundle.c 	kfree(bundle->state);
bundle             87 drivers/greybus/bundle.c 	kfree(bundle->cport_desc);
bundle             88 drivers/greybus/bundle.c 	kfree(bundle);
bundle             92 drivers/greybus/bundle.c static void gb_bundle_disable_all_connections(struct gb_bundle *bundle)
bundle             96 drivers/greybus/bundle.c 	list_for_each_entry(connection, &bundle->connections, bundle_links)
bundle            100 drivers/greybus/bundle.c static void gb_bundle_enable_all_connections(struct gb_bundle *bundle)
bundle            104 drivers/greybus/bundle.c 	list_for_each_entry(connection, &bundle->connections, bundle_links)
bundle            110 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            115 drivers/greybus/bundle.c 		ret = pm->runtime_suspend(&bundle->dev);
bundle            119 drivers/greybus/bundle.c 		gb_bundle_disable_all_connections(bundle);
bundle            122 drivers/greybus/bundle.c 	ret = gb_control_bundle_suspend(bundle->intf->control, bundle->id);
bundle            127 drivers/greybus/bundle.c 			gb_bundle_enable_all_connections(bundle);
bundle            137 drivers/greybus/bundle.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            141 drivers/greybus/bundle.c 	ret = gb_control_bundle_resume(bundle->intf->control, bundle->id);
bundle            150 drivers/greybus/bundle.c 		gb_bundle_enable_all_connections(bundle);
bundle            183 drivers/greybus/bundle.c 	struct gb_bundle *bundle;
bundle            200 drivers/greybus/bundle.c 	bundle = kzalloc(sizeof(*bundle), GFP_KERNEL);
bundle            201 drivers/greybus/bundle.c 	if (!bundle)
bundle            204 drivers/greybus/bundle.c 	bundle->intf = intf;
bundle            205 drivers/greybus/bundle.c 	bundle->id = bundle_id;
bundle            206 drivers/greybus/bundle.c 	bundle->class = class;
bundle            207 drivers/greybus/bundle.c 	INIT_LIST_HEAD(&bundle->connections);
bundle            209 drivers/greybus/bundle.c 	bundle->dev.parent = &intf->dev;
bundle            210 drivers/greybus/bundle.c 	bundle->dev.bus = &greybus_bus_type;
bundle            211 drivers/greybus/bundle.c 	bundle->dev.type = &greybus_bundle_type;
bundle            212 drivers/greybus/bundle.c 	bundle->dev.groups = bundle_groups;
bundle            213 drivers/greybus/bundle.c 	bundle->dev.dma_mask = intf->dev.dma_mask;
bundle            214 drivers/greybus/bundle.c 	device_initialize(&bundle->dev);
bundle            215 drivers/greybus/bundle.c 	dev_set_name(&bundle->dev, "%s.%d", dev_name(&intf->dev), bundle_id);
bundle            217 drivers/greybus/bundle.c 	list_add(&bundle->links, &intf->bundles);
bundle            219 drivers/greybus/bundle.c 	trace_gb_bundle_create(bundle);
bundle            221 drivers/greybus/bundle.c 	return bundle;
bundle            224 drivers/greybus/bundle.c int gb_bundle_add(struct gb_bundle *bundle)
bundle            228 drivers/greybus/bundle.c 	ret = device_add(&bundle->dev);
bundle            230 drivers/greybus/bundle.c 		dev_err(&bundle->dev, "failed to register bundle: %d\n", ret);
bundle            234 drivers/greybus/bundle.c 	trace_gb_bundle_add(bundle);
bundle            242 drivers/greybus/bundle.c void gb_bundle_destroy(struct gb_bundle *bundle)
bundle            244 drivers/greybus/bundle.c 	trace_gb_bundle_destroy(bundle);
bundle            246 drivers/greybus/bundle.c 	if (device_is_registered(&bundle->dev))
bundle            247 drivers/greybus/bundle.c 		device_del(&bundle->dev);
bundle            249 drivers/greybus/bundle.c 	list_del(&bundle->links);
bundle            251 drivers/greybus/bundle.c 	put_device(&bundle->dev);
bundle            146 drivers/greybus/connection.c 		      struct gb_bundle *bundle, int cport_id,
bundle            178 drivers/greybus/connection.c 	connection->bundle = bundle;
bundle            204 drivers/greybus/connection.c 	if (bundle)
bundle            205 drivers/greybus/connection.c 		list_add(&connection->bundle_links, &bundle->connections);
bundle            244 drivers/greybus/connection.c gb_connection_create(struct gb_bundle *bundle, u16 cport_id,
bundle            247 drivers/greybus/connection.c 	struct gb_interface *intf = bundle->intf;
bundle            249 drivers/greybus/connection.c 	return _gb_connection_create(intf->hd, -1, intf, bundle, cport_id,
bundle            255 drivers/greybus/connection.c gb_connection_create_flags(struct gb_bundle *bundle, u16 cport_id,
bundle            259 drivers/greybus/connection.c 	struct gb_interface *intf = bundle->intf;
bundle            264 drivers/greybus/connection.c 	return _gb_connection_create(intf->hd, -1, intf, bundle, cport_id,
bundle            270 drivers/greybus/connection.c gb_connection_create_offloaded(struct gb_bundle *bundle, u16 cport_id,
bundle            275 drivers/greybus/connection.c 	return gb_connection_create_flags(bundle, cport_id, NULL, flags);
bundle            471 drivers/greybus/connection.c 		dev_err(&connection->bundle->dev,
bundle            528 drivers/greybus/connection.c 		dev_warn(&connection->bundle->dev,
bundle             56 drivers/greybus/control.c 					 struct gb_bundle *bundle)
bundle             63 drivers/greybus/control.c 	request.bundle_id = bundle->id;
bundle             72 drivers/greybus/control.c 			bundle->id, ret);
bundle             76 drivers/greybus/control.c 	bundle->class_major = response.major;
bundle             77 drivers/greybus/control.c 	bundle->class_minor = response.minor;
bundle             79 drivers/greybus/control.c 	dev_dbg(&intf->dev, "%s - %u: %u.%u\n", __func__, bundle->id,
bundle             88 drivers/greybus/control.c 	struct gb_bundle *bundle;
bundle             94 drivers/greybus/control.c 	list_for_each_entry(bundle, &intf->bundles, links) {
bundle             95 drivers/greybus/control.c 		ret = gb_control_get_bundle_version(control, bundle);
bundle             30 drivers/greybus/core.c static bool greybus_match_one_id(struct gb_bundle *bundle,
bundle             34 drivers/greybus/core.c 	    (id->vendor != bundle->intf->vendor_id))
bundle             38 drivers/greybus/core.c 	    (id->product != bundle->intf->product_id))
bundle             42 drivers/greybus/core.c 	    (id->class != bundle->class))
bundle             49 drivers/greybus/core.c greybus_match_id(struct gb_bundle *bundle, const struct greybus_bundle_id *id)
bundle             56 drivers/greybus/core.c 		if (greybus_match_one_id(bundle, id))
bundle             66 drivers/greybus/core.c 	struct gb_bundle *bundle;
bundle             72 drivers/greybus/core.c 	bundle = to_gb_bundle(dev);
bundle             74 drivers/greybus/core.c 	id = greybus_match_id(bundle, driver->id_table);
bundle             87 drivers/greybus/core.c 	struct gb_bundle *bundle = NULL;
bundle            105 drivers/greybus/core.c 		bundle = to_gb_bundle(dev);
bundle            106 drivers/greybus/core.c 		intf = bundle->intf;
bundle            133 drivers/greybus/core.c 	if (bundle) {
bundle            139 drivers/greybus/core.c 		if (add_uevent_var(env, "BUNDLE=%u", bundle->id))
bundle            141 drivers/greybus/core.c 		if (add_uevent_var(env, "BUNDLE_CLASS=%02x", bundle->class))
bundle            168 drivers/greybus/core.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            173 drivers/greybus/core.c 	id = greybus_match_id(bundle, driver->id_table);
bundle            177 drivers/greybus/core.c 	retval = pm_runtime_get_sync(&bundle->intf->dev);
bundle            179 drivers/greybus/core.c 		pm_runtime_put_noidle(&bundle->intf->dev);
bundle            183 drivers/greybus/core.c 	retval = gb_control_bundle_activate(bundle->intf->control, bundle->id);
bundle            185 drivers/greybus/core.c 		pm_runtime_put(&bundle->intf->dev);
bundle            202 drivers/greybus/core.c 	retval = driver->probe(bundle, id);
bundle            207 drivers/greybus/core.c 		WARN_ON(!list_empty(&bundle->connections));
bundle            209 drivers/greybus/core.c 		gb_control_bundle_deactivate(bundle->intf->control, bundle->id);
bundle            215 drivers/greybus/core.c 		pm_runtime_put(&bundle->intf->dev);
bundle            220 drivers/greybus/core.c 	pm_runtime_put(&bundle->intf->dev);
bundle            228 drivers/greybus/core.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            241 drivers/greybus/core.c 	list_for_each_entry(connection, &bundle->connections, bundle_links) {
bundle            245 drivers/greybus/core.c 		if (bundle->intf->disconnected)
bundle            251 drivers/greybus/core.c 	driver->disconnect(bundle);
bundle            254 drivers/greybus/core.c 	WARN_ON(!list_empty(&bundle->connections));
bundle            256 drivers/greybus/core.c 	if (!bundle->intf->disconnected)
bundle            257 drivers/greybus/core.c 		gb_control_bundle_deactivate(bundle->intf->control, bundle->id);
bundle            180 drivers/greybus/greybus_trace.h 		__entry->bundle_id = connection->bundle ?
bundle            181 drivers/greybus/greybus_trace.h 				connection->bundle->id : BUNDLE_ID_NONE;
bundle            239 drivers/greybus/greybus_trace.h 	TP_PROTO(struct gb_bundle *bundle),
bundle            241 drivers/greybus/greybus_trace.h 	TP_ARGS(bundle),
bundle            251 drivers/greybus/greybus_trace.h 		__entry->intf_id = bundle->intf->interface_id;
bundle            252 drivers/greybus/greybus_trace.h 		__entry->id = bundle->id;
bundle            253 drivers/greybus/greybus_trace.h 		__entry->class = bundle->class;
bundle            254 drivers/greybus/greybus_trace.h 		__entry->num_cports = bundle->num_cports;
bundle            264 drivers/greybus/greybus_trace.h 				TP_PROTO(struct gb_bundle *bundle), \
bundle            265 drivers/greybus/greybus_trace.h 				TP_ARGS(bundle))
bundle           1071 drivers/greybus/interface.c 	struct gb_bundle *bundle, *tmp;
bundle           1144 drivers/greybus/interface.c 	list_for_each_entry_safe_reverse(bundle, tmp, &intf->bundles, links) {
bundle           1145 drivers/greybus/interface.c 		ret = gb_bundle_add(bundle);
bundle           1147 drivers/greybus/interface.c 			gb_bundle_destroy(bundle);
bundle           1163 drivers/greybus/interface.c 	list_for_each_entry_safe(bundle, tmp, &intf->bundles, links)
bundle           1164 drivers/greybus/interface.c 		gb_bundle_destroy(bundle);
bundle           1183 drivers/greybus/interface.c 	struct gb_bundle *bundle;
bundle           1197 drivers/greybus/interface.c 	list_for_each_entry_safe(bundle, next, &intf->bundles, links)
bundle           1198 drivers/greybus/interface.c 		gb_bundle_destroy(bundle);
bundle             71 drivers/greybus/manifest.c 		if (desc_cport->bundle == bundle_id)
bundle            228 drivers/greybus/manifest.c static u32 gb_manifest_parse_cports(struct gb_bundle *bundle)
bundle            230 drivers/greybus/manifest.c 	struct gb_interface *intf = bundle->intf;
bundle            234 drivers/greybus/manifest.c 	u8 bundle_id = bundle->id;
bundle            245 drivers/greybus/manifest.c 		if (desc_cport->bundle != bundle_id)
bundle            254 drivers/greybus/manifest.c 			dev_err(&bundle->dev, "invalid cport id found (%02u)\n",
bundle            266 drivers/greybus/manifest.c 				dev_err(&bundle->dev,
bundle            278 drivers/greybus/manifest.c 	bundle->cport_desc = kcalloc(count, sizeof(*bundle->cport_desc),
bundle            280 drivers/greybus/manifest.c 	if (!bundle->cport_desc)
bundle            283 drivers/greybus/manifest.c 	bundle->num_cports = count;
bundle            288 drivers/greybus/manifest.c 		memcpy(&bundle->cport_desc[i++], desc_cport,
bundle            315 drivers/greybus/manifest.c 	struct gb_bundle *bundle;
bundle            349 drivers/greybus/manifest.c 		bundle = gb_bundle_create(intf, bundle_id, class);
bundle            350 drivers/greybus/manifest.c 		if (!bundle)
bundle            370 drivers/greybus/manifest.c 		if (!gb_manifest_parse_cports(bundle)) {
bundle            371 drivers/greybus/manifest.c 			gb_bundle_destroy(bundle);
bundle            381 drivers/greybus/manifest.c 	list_for_each_entry_safe(bundle, bundle_next, &intf->bundles, links) {
bundle            382 drivers/greybus/manifest.c 		gb_bundle_destroy(bundle);
bundle            108 drivers/infiniband/core/rdma_core.h int uverbs_output_written(const struct uverbs_attr_bundle *bundle, size_t idx);
bundle            221 drivers/infiniband/core/rdma_core.h void uverbs_fill_udata(struct uverbs_attr_bundle *bundle,
bundle             66 drivers/infiniband/core/uverbs_ioctl.c 	struct uverbs_attr_bundle bundle;
bundle             81 drivers/infiniband/core/uverbs_ioctl.c 		sizeof(*pbundle->bundle.attrs) * method_elm->key_bitmap_len +
bundle            105 drivers/infiniband/core/uverbs_ioctl.c __malloc void *_uverbs_alloc(struct uverbs_attr_bundle *bundle, size_t size,
bundle            109 drivers/infiniband/core/uverbs_ioctl.c 		container_of(bundle, struct bundle_priv, bundle);
bundle            147 drivers/infiniband/core/uverbs_ioctl.c static int uverbs_set_output(const struct uverbs_attr_bundle *bundle,
bundle            151 drivers/infiniband/core/uverbs_ioctl.c 		container_of(bundle, struct bundle_priv, bundle);
bundle            186 drivers/infiniband/core/uverbs_ioctl.c 		uverbs_alloc(&pbundle->bundle,
bundle            211 drivers/infiniband/core/uverbs_ioctl.c 			idr_vals[i], &pbundle->bundle);
bundle            248 drivers/infiniband/core/uverbs_ioctl.c 	struct uverbs_attr *e = &pbundle->bundle.attrs[attr_bkey];
bundle            296 drivers/infiniband/core/uverbs_ioctl.c 			p = uverbs_alloc(&pbundle->bundle, uattr->len);
bundle            329 drivers/infiniband/core/uverbs_ioctl.c 			uattr->data_s64, &pbundle->bundle);
bundle            406 drivers/infiniband/core/uverbs_ioctl.c 	if (test_bit(attr_bkey, pbundle->bundle.attr_present))
bundle            413 drivers/infiniband/core/uverbs_ioctl.c 	__set_bit(attr_bkey, pbundle->bundle.attr_present);
bundle            430 drivers/infiniband/core/uverbs_ioctl.c 		&pbundle->bundle.ufile->device->disassociate_srcu);
bundle            434 drivers/infiniband/core/uverbs_ioctl.c 	pbundle->uattrs = uverbs_alloc(&pbundle->bundle, uattrs_size);
bundle            448 drivers/infiniband/core/uverbs_ioctl.c 				    pbundle->bundle.attr_present,
bundle            453 drivers/infiniband/core/uverbs_ioctl.c 		uverbs_fill_udata(&pbundle->bundle,
bundle            454 drivers/infiniband/core/uverbs_ioctl.c 				  &pbundle->bundle.driver_udata,
bundle            457 drivers/infiniband/core/uverbs_ioctl.c 		pbundle->bundle.driver_udata = (struct ib_udata){};
bundle            461 drivers/infiniband/core/uverbs_ioctl.c 			&pbundle->bundle.attrs[destroy_bkey].obj_attr;
bundle            463 drivers/infiniband/core/uverbs_ioctl.c 		ret = uobj_destroy(destroy_attr->uobject, &pbundle->bundle);
bundle            468 drivers/infiniband/core/uverbs_ioctl.c 		ret = handler(&pbundle->bundle);
bundle            471 drivers/infiniband/core/uverbs_ioctl.c 		ret = handler(&pbundle->bundle);
bundle            481 drivers/infiniband/core/uverbs_ioctl.c 			uverbs_attr_get(&pbundle->bundle, UVERBS_ATTR_UHW_OUT);
bundle            484 drivers/infiniband/core/uverbs_ioctl.c 			ret = uverbs_set_output(&pbundle->bundle, attr);
bundle            509 drivers/infiniband/core/uverbs_ioctl.c 		struct uverbs_attr *attr = &pbundle->bundle.attrs[i];
bundle            515 drivers/infiniband/core/uverbs_ioctl.c 			&pbundle->bundle);
bundle            523 drivers/infiniband/core/uverbs_ioctl.c 		struct uverbs_attr *attr = &pbundle->bundle.attrs[i];
bundle            539 drivers/infiniband/core/uverbs_ioctl.c 				&pbundle->bundle);
bundle            597 drivers/infiniband/core/uverbs_ioctl.c 	pbundle->bundle.ufile = ufile;
bundle            598 drivers/infiniband/core/uverbs_ioctl.c 	pbundle->bundle.context = NULL; /* only valid if bundle has uobject */
bundle            605 drivers/infiniband/core/uverbs_ioctl.c 					       sizeof(*pbundle->bundle.attrs),
bundle            607 drivers/infiniband/core/uverbs_ioctl.c 	memset(pbundle->bundle.attr_present, 0,
bundle            608 drivers/infiniband/core/uverbs_ioctl.c 	       sizeof(pbundle->bundle.attr_present));
bundle            705 drivers/infiniband/core/uverbs_ioctl.c void uverbs_fill_udata(struct uverbs_attr_bundle *bundle,
bundle            710 drivers/infiniband/core/uverbs_ioctl.c 		container_of(bundle, struct bundle_priv, bundle);
bundle            712 drivers/infiniband/core/uverbs_ioctl.c 		uverbs_attr_get(&pbundle->bundle, attr_in);
bundle            714 drivers/infiniband/core/uverbs_ioctl.c 		uverbs_attr_get(&pbundle->bundle, attr_out);
bundle            738 drivers/infiniband/core/uverbs_ioctl.c int uverbs_copy_to(const struct uverbs_attr_bundle *bundle, size_t idx,
bundle            741 drivers/infiniband/core/uverbs_ioctl.c 	const struct uverbs_attr *attr = uverbs_attr_get(bundle, idx);
bundle            751 drivers/infiniband/core/uverbs_ioctl.c 	return uverbs_set_output(bundle, attr);
bundle            760 drivers/infiniband/core/uverbs_ioctl.c int uverbs_output_written(const struct uverbs_attr_bundle *bundle, size_t idx)
bundle            762 drivers/infiniband/core/uverbs_ioctl.c 	const struct uverbs_attr *attr = uverbs_attr_get(bundle, idx);
bundle            767 drivers/infiniband/core/uverbs_ioctl.c 	return uverbs_set_output(bundle, attr);
bundle            793 drivers/infiniband/core/uverbs_ioctl.c int uverbs_copy_to_struct_or_zero(const struct uverbs_attr_bundle *bundle,
bundle            796 drivers/infiniband/core/uverbs_ioctl.c 	const struct uverbs_attr *attr = uverbs_attr_get(bundle, idx);
bundle            803 drivers/infiniband/core/uverbs_ioctl.c 	return uverbs_copy_to(bundle, idx, from, size);
bundle            667 drivers/infiniband/core/uverbs_main.c 	struct uverbs_attr_bundle bundle;
bundle            702 drivers/infiniband/core/uverbs_main.c 	memset(bundle.attr_present, 0, sizeof(bundle.attr_present));
bundle            703 drivers/infiniband/core/uverbs_main.c 	bundle.ufile = file;
bundle            704 drivers/infiniband/core/uverbs_main.c 	bundle.context = NULL; /* only valid if bundle has uobject */
bundle            711 drivers/infiniband/core/uverbs_main.c 			bundle.driver_udata.inlen =
bundle            714 drivers/infiniband/core/uverbs_main.c 			if (bundle.driver_udata.inlen)
bundle            715 drivers/infiniband/core/uverbs_main.c 				bundle.driver_udata.inbuf = buf + in_len;
bundle            717 drivers/infiniband/core/uverbs_main.c 				bundle.driver_udata.inbuf = NULL;
bundle            719 drivers/infiniband/core/uverbs_main.c 			memset(&bundle.driver_udata, 0,
bundle            720 drivers/infiniband/core/uverbs_main.c 			       sizeof(bundle.driver_udata));
bundle            734 drivers/infiniband/core/uverbs_main.c 				bundle.driver_udata.outlen =
bundle            737 drivers/infiniband/core/uverbs_main.c 				if (bundle.driver_udata.outlen)
bundle            738 drivers/infiniband/core/uverbs_main.c 					bundle.driver_udata.outbuf =
bundle            742 drivers/infiniband/core/uverbs_main.c 					bundle.driver_udata.outbuf = NULL;
bundle            745 drivers/infiniband/core/uverbs_main.c 			bundle.driver_udata.outlen = 0;
bundle            746 drivers/infiniband/core/uverbs_main.c 			bundle.driver_udata.outbuf = NULL;
bundle            750 drivers/infiniband/core/uverbs_main.c 			&bundle.ucore, buf, u64_to_user_ptr(response),
bundle            755 drivers/infiniband/core/uverbs_main.c 		ib_uverbs_init_udata_buf_or_null(&bundle.ucore, buf,
bundle            760 drivers/infiniband/core/uverbs_main.c 			&bundle.driver_udata, buf + bundle.ucore.inlen,
bundle            761 drivers/infiniband/core/uverbs_main.c 			u64_to_user_ptr(ex_hdr.response) + bundle.ucore.outlen,
bundle            767 drivers/infiniband/core/uverbs_main.c 	ret = method_elm->handler(&bundle);
bundle             59 drivers/isdn/mISDN/l1oip.h 	int			bundle;		/* bundle channels in one frm */
bundle           1285 drivers/isdn/mISDN/l1oip_core.c init_card(struct l1oip *hc, int pri, int bundle)
bundle           1297 drivers/isdn/mISDN/l1oip_core.c 	hc->bundle = bundle;
bundle           1436 drivers/isdn/mISDN/l1oip_core.c 	int		pri, bundle;
bundle           1454 drivers/isdn/mISDN/l1oip_core.c 			bundle = 0;
bundle           1458 drivers/isdn/mISDN/l1oip_core.c 			bundle = 0;
bundle           1462 drivers/isdn/mISDN/l1oip_core.c 			bundle = 1;
bundle           1466 drivers/isdn/mISDN/l1oip_core.c 			bundle = 1;
bundle           1478 drivers/isdn/mISDN/l1oip_core.c 			       bundle ? "bundled IP packet for all B-channels" :
bundle           1493 drivers/isdn/mISDN/l1oip_core.c 		ret = init_card(hc, pri, bundle);
bundle            690 drivers/net/ethernet/chelsio/cxgb3/t3_cpl.h 	__u8 bundle:1;
bundle            696 drivers/net/ethernet/chelsio/cxgb3/t3_cpl.h 	__u8 bundle:1;
bundle           1226 drivers/net/ethernet/intel/e100.c 	u8 timer, bundle, min_size;
bundle           1292 drivers/net/ethernet/intel/e100.c 	bundle = fw->data[UCODE_SIZE * 4 + 1];
bundle           1295 drivers/net/ethernet/intel/e100.c 	if (timer >= UCODE_SIZE || bundle >= UCODE_SIZE ||
bundle           1299 drivers/net/ethernet/intel/e100.c 			  fw_name, timer, bundle, min_size);
bundle           1314 drivers/net/ethernet/intel/e100.c 	u8 timer, bundle, min_size;
bundle           1325 drivers/net/ethernet/intel/e100.c 	bundle = fw->data[UCODE_SIZE * 4 + 1];
bundle           1331 drivers/net/ethernet/intel/e100.c 	cb->u.ucode[bundle] &= cpu_to_le32(0xFFFF0000);
bundle           1332 drivers/net/ethernet/intel/e100.c 	cb->u.ucode[bundle] |= cpu_to_le32(BUNDLEMAX);
bundle            301 drivers/net/wireless/ath/ath10k/htc.c 	struct ath10k_htc_lookahead_bundle *bundle;
bundle            356 drivers/net/wireless/ath/ath10k/htc.c 			bundle = record->lookahead_bundle;
bundle            358 drivers/net/wireless/ath/ath10k/htc.c 								     bundle,
bundle             41 drivers/staging/greybus/audio_apbridgea.c 	ret = gb_pm_runtime_get_sync(connection->bundle);
bundle             65 drivers/staging/greybus/audio_apbridgea.c 	gb_pm_runtime_put_autosuspend(connection->bundle);
bundle            418 drivers/staging/greybus/audio_codec.c 	struct gb_bundle *bundle;
bundle            478 drivers/staging/greybus/audio_codec.c 	bundle = to_gb_bundle(module->dev);
bundle            479 drivers/staging/greybus/audio_codec.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            496 drivers/staging/greybus/audio_codec.c 	gb_pm_runtime_put_noidle(bundle);
bundle            519 drivers/staging/greybus/audio_codec.c 	struct gb_bundle *bundle;
bundle            550 drivers/staging/greybus/audio_codec.c 	bundle = to_gb_bundle(module->dev);
bundle            551 drivers/staging/greybus/audio_codec.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            574 drivers/staging/greybus/audio_codec.c 	gb_pm_runtime_put_noidle(bundle);
bundle            586 drivers/staging/greybus/audio_codec.c 	struct gb_bundle *bundle;
bundle            627 drivers/staging/greybus/audio_codec.c 	bundle = to_gb_bundle(module->dev);
bundle            628 drivers/staging/greybus/audio_codec.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            670 drivers/staging/greybus/audio_codec.c 	gb_pm_runtime_put_noidle(bundle);
bundle            145 drivers/staging/greybus/audio_module.c 		greybus_get_drvdata(connection->bundle);
bundle            169 drivers/staging/greybus/audio_module.c 		dev_err_ratelimited(&connection->bundle->dev,
bundle            179 drivers/staging/greybus/audio_module.c 				struct gb_bundle *bundle)
bundle            185 drivers/staging/greybus/audio_module.c 		dev_err(&bundle->dev,
bundle            190 drivers/staging/greybus/audio_module.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle            195 drivers/staging/greybus/audio_module.c 	greybus_set_drvdata(bundle, gbmodule);
bundle            203 drivers/staging/greybus/audio_module.c 				struct gb_bundle *bundle)
bundle            212 drivers/staging/greybus/audio_module.c 	connection = gb_connection_create_offloaded(bundle,
bundle            220 drivers/staging/greybus/audio_module.c 	greybus_set_drvdata(bundle, gbmodule);
bundle            233 drivers/staging/greybus/audio_module.c static int gb_audio_probe(struct gb_bundle *bundle,
bundle            236 drivers/staging/greybus/audio_module.c 	struct device *dev = &bundle->dev;
bundle            245 drivers/staging/greybus/audio_module.c 	if (bundle->num_cports < 2)
bundle            256 drivers/staging/greybus/audio_module.c 	gbmodule->num_data_connections = bundle->num_cports - 1;
bundle            264 drivers/staging/greybus/audio_module.c 	greybus_set_drvdata(bundle, gbmodule);
bundle            267 drivers/staging/greybus/audio_module.c 	for (i = 0; i < bundle->num_cports; i++) {
bundle            268 drivers/staging/greybus/audio_module.c 		cport_desc = &bundle->cport_desc[i];
bundle            273 drivers/staging/greybus/audio_module.c 							   bundle);
bundle            279 drivers/staging/greybus/audio_module.c 							   bundle);
bundle            354 drivers/staging/greybus/audio_module.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            385 drivers/staging/greybus/audio_module.c static void gb_audio_disconnect(struct gb_bundle *bundle)
bundle            387 drivers/staging/greybus/audio_module.c 	struct gbaudio_module_info *gbmodule = greybus_get_drvdata(bundle);
bundle            390 drivers/staging/greybus/audio_module.c 	gb_pm_runtime_get_sync(bundle);
bundle            411 drivers/staging/greybus/audio_module.c 	devm_kfree(&bundle->dev, gbmodule);
bundle            423 drivers/staging/greybus/audio_module.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            424 drivers/staging/greybus/audio_module.c 	struct gbaudio_module_info *gbmodule = greybus_get_drvdata(bundle);
bundle            437 drivers/staging/greybus/audio_module.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle            438 drivers/staging/greybus/audio_module.c 	struct gbaudio_module_info *gbmodule = greybus_get_drvdata(bundle);
bundle            221 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            230 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            232 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            239 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            283 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            292 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            321 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            328 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            392 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            401 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            408 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            415 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            442 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            451 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            476 drivers/staging/greybus/audio_topology.c 		ret = gb_pm_runtime_get_sync(bundle);
bundle            484 drivers/staging/greybus/audio_topology.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            561 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            571 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            573 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            580 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            606 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            628 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            630 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            637 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            726 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            736 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            738 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            745 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            774 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            788 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            790 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            797 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            830 drivers/staging/greybus/audio_topology.c 		ret = gb_pm_runtime_get_sync(bundle);
bundle            837 drivers/staging/greybus/audio_topology.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            941 drivers/staging/greybus/audio_topology.c 	struct gb_bundle *bundle;
bundle            957 drivers/staging/greybus/audio_topology.c 	bundle = to_gb_bundle(module->dev);
bundle            959 drivers/staging/greybus/audio_topology.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            980 drivers/staging/greybus/audio_topology.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            265 drivers/staging/greybus/authentication.c 	struct gb_bundle *bundle = cap->connection->bundle;
bundle            280 drivers/staging/greybus/authentication.c 		ret = gb_pm_runtime_get_sync(bundle);
bundle            283 drivers/staging/greybus/authentication.c 			gb_pm_runtime_put_autosuspend(bundle);
bundle            310 drivers/staging/greybus/authentication.c 	cap->parent = &connection->bundle->dev;
bundle             57 drivers/staging/greybus/bootrom.c 	struct device *dev = &bootrom->connection->bundle->dev;
bundle            115 drivers/staging/greybus/bootrom.c 	struct gb_interface *intf = connection->bundle->intf;
bundle            124 drivers/staging/greybus/bootrom.c 		dev_err(&connection->bundle->dev,
bundle            139 drivers/staging/greybus/bootrom.c 	dev_dbg(&connection->bundle->dev, "Bootrom got vid (0x%x)/pid (0x%x)\n",
bundle            147 drivers/staging/greybus/bootrom.c 	struct gb_interface *intf = connection->bundle->intf;
bundle            156 drivers/staging/greybus/bootrom.c 		dev_err(&connection->bundle->dev, "Invalid boot stage: %u\n",
bundle            175 drivers/staging/greybus/bootrom.c 	dev_info(&connection->bundle->dev, "Firmware file '%s' requested\n",
bundle            179 drivers/staging/greybus/bootrom.c 			      &connection->bundle->dev);
bundle            181 drivers/staging/greybus/bootrom.c 		dev_err(&connection->bundle->dev,
bundle            194 drivers/staging/greybus/bootrom.c 	struct device *dev = &op->connection->bundle->dev;
bundle            247 drivers/staging/greybus/bootrom.c 	struct device *dev = &op->connection->bundle->dev;
bundle            316 drivers/staging/greybus/bootrom.c 	struct device *dev = &connection->bundle->dev;
bundle            369 drivers/staging/greybus/bootrom.c 		dev_err(&op->connection->bundle->dev,
bundle            377 drivers/staging/greybus/bootrom.c 	struct gb_bundle *bundle = bootrom->connection->bundle;
bundle            390 drivers/staging/greybus/bootrom.c 		dev_err(&bundle->dev,
bundle            397 drivers/staging/greybus/bootrom.c 		dev_err(&bundle->dev,
bundle            406 drivers/staging/greybus/bootrom.c 	dev_dbg(&bundle->dev, "%s - %u.%u\n", __func__, response.major,
bundle            412 drivers/staging/greybus/bootrom.c static int gb_bootrom_probe(struct gb_bundle *bundle,
bundle            420 drivers/staging/greybus/bootrom.c 	if (bundle->num_cports != 1)
bundle            423 drivers/staging/greybus/bootrom.c 	cport_desc = &bundle->cport_desc[0];
bundle            431 drivers/staging/greybus/bootrom.c 	connection = gb_connection_create(bundle,
bundle            445 drivers/staging/greybus/bootrom.c 	greybus_set_drvdata(bundle, bootrom);
bundle            469 drivers/staging/greybus/bootrom.c 		dev_err(&connection->bundle->dev,
bundle            474 drivers/staging/greybus/bootrom.c 	dev_dbg(&bundle->dev, "AP_READY sent\n");
bundle            490 drivers/staging/greybus/bootrom.c static void gb_bootrom_disconnect(struct gb_bundle *bundle)
bundle            492 drivers/staging/greybus/bootrom.c 	struct gb_bootrom *bootrom = greybus_get_drvdata(bundle);
bundle            494 drivers/staging/greybus/bootrom.c 	dev_dbg(&bundle->dev, "%s\n", __func__);
bundle             51 drivers/staging/greybus/camera.c 	struct gb_bundle *bundle;
bundle            183 drivers/staging/greybus/camera.c #define gcam_dbg(gcam, format...)	dev_dbg(&gcam->bundle->dev, format)
bundle            184 drivers/staging/greybus/camera.c #define gcam_info(gcam, format...)	dev_info(&gcam->bundle->dev, format)
bundle            185 drivers/staging/greybus/camera.c #define gcam_err(gcam, format...)	dev_err(&gcam->bundle->dev, format)
bundle            393 drivers/staging/greybus/camera.c 	conn = gb_connection_create_offloaded(gcam->bundle, gcam->data_cport_id,
bundle            494 drivers/staging/greybus/camera.c 	ret = gb_pm_runtime_get_sync(gcam->bundle);
bundle            516 drivers/staging/greybus/camera.c 	gb_pm_runtime_put_autosuspend(gcam->bundle);
bundle            564 drivers/staging/greybus/camera.c 	ret = gb_pm_runtime_get_sync(gcam->bundle);
bundle            616 drivers/staging/greybus/camera.c 		gb_pm_runtime_put_noidle(gcam->bundle);
bundle            626 drivers/staging/greybus/camera.c 	gb_pm_runtime_get_noresume(gcam->bundle);
bundle            638 drivers/staging/greybus/camera.c 		gb_pm_runtime_put_noidle(gcam->bundle);
bundle            645 drivers/staging/greybus/camera.c 	gb_pm_runtime_put_autosuspend(gcam->bundle);
bundle           1174 drivers/staging/greybus/camera.c 		 gcam->bundle->id);
bundle           1235 drivers/staging/greybus/camera.c static int gb_camera_probe(struct gb_bundle *bundle,
bundle           1249 drivers/staging/greybus/camera.c 	if (bundle->num_cports != 2)
bundle           1252 drivers/staging/greybus/camera.c 	for (i = 0; i < bundle->num_cports; ++i) {
bundle           1253 drivers/staging/greybus/camera.c 		struct greybus_descriptor_cport *desc = &bundle->cport_desc[i];
bundle           1276 drivers/staging/greybus/camera.c 	gcam->bundle = bundle;
bundle           1280 drivers/staging/greybus/camera.c 	conn = gb_connection_create(bundle, mgmt_cport_id,
bundle           1306 drivers/staging/greybus/camera.c 	greybus_set_drvdata(bundle, gcam);
bundle           1308 drivers/staging/greybus/camera.c 	gb_pm_runtime_put_autosuspend(gcam->bundle);
bundle           1318 drivers/staging/greybus/camera.c static void gb_camera_disconnect(struct gb_bundle *bundle)
bundle           1320 drivers/staging/greybus/camera.c 	struct gb_camera *gcam = greybus_get_drvdata(bundle);
bundle           1323 drivers/staging/greybus/camera.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle           1325 drivers/staging/greybus/camera.c 		gb_pm_runtime_get_noresume(bundle);
bundle           1339 drivers/staging/greybus/camera.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle           1340 drivers/staging/greybus/camera.c 	struct gb_camera *gcam = greybus_get_drvdata(bundle);
bundle           1352 drivers/staging/greybus/camera.c 	struct gb_bundle *bundle = to_gb_bundle(dev);
bundle           1353 drivers/staging/greybus/camera.c 	struct gb_camera *gcam = greybus_get_drvdata(bundle);
bundle             42 drivers/staging/greybus/fw-core.c 	ret = gb_spilib_master_init(connection, &connection->bundle->dev,
bundle             61 drivers/staging/greybus/fw-core.c static int gb_fw_core_probe(struct gb_bundle *bundle,
bundle             76 drivers/staging/greybus/fw-core.c 	for (i = 0; i < bundle->num_cports; i++) {
bundle             77 drivers/staging/greybus/fw-core.c 		cport_desc = &bundle->cport_desc[i];
bundle             85 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev,
bundle             91 drivers/staging/greybus/fw-core.c 			connection = gb_connection_create(bundle, cport_id,
bundle             95 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev,
bundle            106 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev,
bundle            112 drivers/staging/greybus/fw-core.c 			connection = gb_connection_create(bundle, cport_id,
bundle            115 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev, "failed to create download connection (%ld)\n",
bundle            125 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev,
bundle            131 drivers/staging/greybus/fw-core.c 			connection = gb_connection_create(bundle, cport_id,
bundle            134 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev, "failed to create SPI connection (%ld)\n",
bundle            144 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev, "multiple Authentication CPorts found\n");
bundle            149 drivers/staging/greybus/fw-core.c 			connection = gb_connection_create(bundle, cport_id,
bundle            152 drivers/staging/greybus/fw-core.c 				dev_err(&bundle->dev, "failed to create Authentication connection (%ld)\n",
bundle            160 drivers/staging/greybus/fw-core.c 			dev_err(&bundle->dev, "invalid protocol id (0x%02x)\n",
bundle            169 drivers/staging/greybus/fw-core.c 		dev_err(&bundle->dev, "missing management connection\n");
bundle            177 drivers/staging/greybus/fw-core.c 		dev_err(&bundle->dev, "failed to initialize firmware download connection, disable it (%d)\n",
bundle            186 drivers/staging/greybus/fw-core.c 		dev_err(&bundle->dev, "failed to initialize SPI connection, disable it (%d)\n",
bundle            195 drivers/staging/greybus/fw-core.c 		dev_err(&bundle->dev, "failed to initialize CAP connection, disable it (%d)\n",
bundle            204 drivers/staging/greybus/fw-core.c 		dev_err(&bundle->dev, "failed to initialize firmware management connection, disable it (%d)\n",
bundle            209 drivers/staging/greybus/fw-core.c 	greybus_set_drvdata(bundle, fw_core);
bundle            212 drivers/staging/greybus/fw-core.c 	if (!(bundle->intf->quirks & GB_INTERFACE_QUIRK_NO_PM))
bundle            213 drivers/staging/greybus/fw-core.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            231 drivers/staging/greybus/fw-core.c static void gb_fw_core_disconnect(struct gb_bundle *bundle)
bundle            233 drivers/staging/greybus/fw-core.c 	struct gb_fw_core *fw_core = greybus_get_drvdata(bundle);
bundle            237 drivers/staging/greybus/fw-core.c 	if (!(bundle->intf->quirks & GB_INTERFACE_QUIRK_NO_PM)) {
bundle            238 drivers/staging/greybus/fw-core.c 		ret = gb_pm_runtime_get_sync(bundle);
bundle            240 drivers/staging/greybus/fw-core.c 			gb_pm_runtime_get_noresume(bundle);
bundle            165 drivers/staging/greybus/fw-download.c 	struct gb_interface *intf = fw_download->connection->bundle->intf;
bundle            399 drivers/staging/greybus/fw-download.c 		dev_err(&op->connection->bundle->dev,
bundle            417 drivers/staging/greybus/fw-download.c 	fw_download->parent = &connection->bundle->dev;
bundle            536 drivers/staging/greybus/fw-management.c 	struct gb_bundle *bundle = fw_mgmt->connection->bundle;
bundle            553 drivers/staging/greybus/fw-management.c 		ret = gb_pm_runtime_get_sync(bundle);
bundle            556 drivers/staging/greybus/fw-management.c 			gb_pm_runtime_put_autosuspend(bundle);
bundle            581 drivers/staging/greybus/fw-management.c 		dev_err(&op->connection->bundle->dev,
bundle            599 drivers/staging/greybus/fw-management.c 	fw_mgmt->parent = &connection->bundle->dev;
bundle             23 drivers/staging/greybus/gbphy.c 	struct gb_bundle *bundle;
bundle             78 drivers/staging/greybus/gbphy.c 	struct gb_bundle *bundle = gbphy_dev->bundle;
bundle             79 drivers/staging/greybus/gbphy.c 	struct gb_interface *intf = bundle->intf;
bundle             92 drivers/staging/greybus/gbphy.c 	if (add_uevent_var(env, "BUNDLE=%u", gbphy_dev->bundle->id))
bundle             94 drivers/staging/greybus/gbphy.c 	if (add_uevent_var(env, "BUNDLE_CLASS=%02x", bundle->class))
bundle            145 drivers/staging/greybus/gbphy.c 	ret = gb_pm_runtime_get_sync(gbphy_dev->bundle);
bundle            167 drivers/staging/greybus/gbphy.c 	gb_pm_runtime_put_autosuspend(gbphy_dev->bundle);
bundle            223 drivers/staging/greybus/gbphy.c static struct gbphy_device *gb_gbphy_create_dev(struct gb_bundle *bundle,
bundle            241 drivers/staging/greybus/gbphy.c 	gbphy_dev->bundle = bundle;
bundle            243 drivers/staging/greybus/gbphy.c 	gbphy_dev->dev.parent = &bundle->dev;
bundle            247 drivers/staging/greybus/gbphy.c 	gbphy_dev->dev.dma_mask = bundle->dev.dma_mask;
bundle            259 drivers/staging/greybus/gbphy.c static void gb_gbphy_disconnect(struct gb_bundle *bundle)
bundle            261 drivers/staging/greybus/gbphy.c 	struct gbphy_host *gbphy_host = greybus_get_drvdata(bundle);
bundle            265 drivers/staging/greybus/gbphy.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            267 drivers/staging/greybus/gbphy.c 		gb_pm_runtime_get_noresume(bundle);
bundle            277 drivers/staging/greybus/gbphy.c static int gb_gbphy_probe(struct gb_bundle *bundle,
bundle            284 drivers/staging/greybus/gbphy.c 	if (bundle->num_cports == 0)
bundle            291 drivers/staging/greybus/gbphy.c 	gbphy_host->bundle = bundle;
bundle            293 drivers/staging/greybus/gbphy.c 	greybus_set_drvdata(bundle, gbphy_host);
bundle            299 drivers/staging/greybus/gbphy.c 	for (i = 0; i < bundle->num_cports; ++i) {
bundle            300 drivers/staging/greybus/gbphy.c 		gbphy_dev = gb_gbphy_create_dev(bundle, &bundle->cport_desc[i]);
bundle            302 drivers/staging/greybus/gbphy.c 			gb_gbphy_disconnect(bundle);
bundle            308 drivers/staging/greybus/gbphy.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle             14 drivers/staging/greybus/gbphy.h 	struct gb_bundle *bundle;
bundle            518 drivers/staging/greybus/gpio.c 		gb_connection_create(gbphy_dev->bundle,
bundle             19 drivers/staging/greybus/hid.c 	struct gb_bundle *bundle;
bundle             46 drivers/staging/greybus/hid.c 	ret = gb_pm_runtime_get_sync(ghid->bundle);
bundle             54 drivers/staging/greybus/hid.c 	gb_pm_runtime_put_autosuspend(ghid->bundle);
bundle             63 drivers/staging/greybus/hid.c 	ret = gb_pm_runtime_get_sync(ghid->bundle);
bundle             69 drivers/staging/greybus/hid.c 	gb_pm_runtime_put_autosuspend(ghid->bundle);
bundle             80 drivers/staging/greybus/hid.c 	ret = gb_pm_runtime_get_sync(ghid->bundle);
bundle             90 drivers/staging/greybus/hid.c 	gb_pm_runtime_put_autosuspend(ghid->bundle);
bundle            102 drivers/staging/greybus/hid.c 	ret = gb_pm_runtime_get_sync(ghid->bundle);
bundle            110 drivers/staging/greybus/hid.c 		gb_pm_runtime_put_autosuspend(ghid->bundle);
bundle            121 drivers/staging/greybus/hid.c 		dev_err(&operation->connection->bundle->dev,
bundle            128 drivers/staging/greybus/hid.c 	gb_pm_runtime_put_autosuspend(ghid->bundle);
bundle            140 drivers/staging/greybus/hid.c 		dev_err(&connection->bundle->dev,
bundle            366 drivers/staging/greybus/hid.c 		dev_err(&ghid->connection->bundle->dev,
bundle            411 drivers/staging/greybus/hid.c 	hid->dev.parent = &ghid->connection->bundle->dev;
bundle            416 drivers/staging/greybus/hid.c 		 dev_name(&ghid->connection->bundle->dev),
bundle            422 drivers/staging/greybus/hid.c static int gb_hid_probe(struct gb_bundle *bundle,
bundle            431 drivers/staging/greybus/hid.c 	if (bundle->num_cports != 1)
bundle            434 drivers/staging/greybus/hid.c 	cport_desc = &bundle->cport_desc[0];
bundle            442 drivers/staging/greybus/hid.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle            459 drivers/staging/greybus/hid.c 	ghid->bundle = bundle;
bundle            461 drivers/staging/greybus/hid.c 	greybus_set_drvdata(bundle, ghid);
bundle            477 drivers/staging/greybus/hid.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            493 drivers/staging/greybus/hid.c static void gb_hid_disconnect(struct gb_bundle *bundle)
bundle            495 drivers/staging/greybus/hid.c 	struct gb_hid *ghid = greybus_get_drvdata(bundle);
bundle            497 drivers/staging/greybus/hid.c 	if (gb_pm_runtime_get_sync(bundle))
bundle            498 drivers/staging/greybus/hid.c 		gb_pm_runtime_get_noresume(bundle);
bundle            258 drivers/staging/greybus/i2c.c 		gb_connection_create(gbphy_dev->bundle,
bundle            118 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            125 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            136 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            321 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            328 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            339 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            347 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            354 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            364 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            373 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            378 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            407 drivers/staging/greybus/light.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            410 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            455 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            467 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            497 drivers/staging/greybus/light.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            500 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            534 drivers/staging/greybus/light.c 	struct device *dev = &connection->bundle->dev;
bundle            595 drivers/staging/greybus/light.c 	dev_err(&connection->bundle->dev, "no support for v4l2 subdevices\n");
bundle            636 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            643 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            656 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            677 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            684 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            697 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            708 drivers/staging/greybus/light.c 	struct gb_bundle *bundle = connection->bundle;
bundle            716 drivers/staging/greybus/light.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            728 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            806 drivers/staging/greybus/light.c 	ret = led_classdev_flash_register(&connection->bundle->dev, fled);
bundle            872 drivers/staging/greybus/light.c 	dev_err(&connection->bundle->dev, "no support for flash devices\n");
bundle            893 drivers/staging/greybus/light.c 	ret = led_classdev_register(&connection->bundle->dev, cdev);
bundle           1177 drivers/staging/greybus/light.c 			dev_err(&connection->bundle->dev,
bundle           1198 drivers/staging/greybus/light.c 			dev_err(&connection->bundle->dev,
bundle           1211 drivers/staging/greybus/light.c 	struct device *dev = &connection->bundle->dev;
bundle           1261 drivers/staging/greybus/light.c static int gb_lights_probe(struct gb_bundle *bundle,
bundle           1269 drivers/staging/greybus/light.c 	if (bundle->num_cports != 1)
bundle           1272 drivers/staging/greybus/light.c 	cport_desc = &bundle->cport_desc[0];
bundle           1282 drivers/staging/greybus/light.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle           1292 drivers/staging/greybus/light.c 	greybus_set_drvdata(bundle, glights);
bundle           1317 drivers/staging/greybus/light.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle           1330 drivers/staging/greybus/light.c static void gb_lights_disconnect(struct gb_bundle *bundle)
bundle           1332 drivers/staging/greybus/light.c 	struct gb_lights *glights = greybus_get_drvdata(bundle);
bundle           1334 drivers/staging/greybus/light.c 	if (gb_pm_runtime_get_sync(bundle))
bundle           1335 drivers/staging/greybus/light.c 		gb_pm_runtime_get_noresume(bundle);
bundle             21 drivers/staging/greybus/log.c 	struct device *dev = &connection->bundle->dev;
bundle             65 drivers/staging/greybus/log.c static int gb_log_probe(struct gb_bundle *bundle,
bundle             73 drivers/staging/greybus/log.c 	if (bundle->num_cports != 1)
bundle             76 drivers/staging/greybus/log.c 	cport_desc = &bundle->cport_desc[0];
bundle             84 drivers/staging/greybus/log.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle             92 drivers/staging/greybus/log.c 	greybus_set_drvdata(bundle, log);
bundle            107 drivers/staging/greybus/log.c static void gb_log_disconnect(struct gb_bundle *bundle)
bundle            109 drivers/staging/greybus/log.c 	struct gb_log *log = greybus_get_drvdata(bundle);
bundle            190 drivers/staging/greybus/loopback.c 		gb_loopback_check_attr(gb, bundle);			\
bundle            389 drivers/staging/greybus/loopback.c 		dev_err(&gb->connection->bundle->dev,
bundle            397 drivers/staging/greybus/loopback.c 			dev_err(&gb->connection->bundle->dev,
bundle            453 drivers/staging/greybus/loopback.c 	dev_dbg(&gb->connection->bundle->dev, "complete operation %d\n",
bundle            554 drivers/staging/greybus/loopback.c 		dev_err(&gb->connection->bundle->dev,
bundle            608 drivers/staging/greybus/loopback.c 		dev_err(&gb->connection->bundle->dev,
bundle            658 drivers/staging/greybus/loopback.c 	struct device *dev = &connection->bundle->dev;
bundle            843 drivers/staging/greybus/loopback.c 	struct gb_bundle *bundle = gb->connection->bundle;
bundle            845 drivers/staging/greybus/loopback.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            851 drivers/staging/greybus/loopback.c 			gb_pm_runtime_put_autosuspend(bundle);
bundle            854 drivers/staging/greybus/loopback.c 			ret = gb_pm_runtime_get_sync(bundle);
bundle            883 drivers/staging/greybus/loopback.c 				dev_dbg(&bundle->dev, "load test complete\n");
bundle            885 drivers/staging/greybus/loopback.c 				dev_dbg(&bundle->dev,
bundle            935 drivers/staging/greybus/loopback.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            974 drivers/staging/greybus/loopback.c static int gb_loopback_probe(struct gb_bundle *bundle,
bundle            985 drivers/staging/greybus/loopback.c 	if (bundle->num_cports != 1)
bundle            988 drivers/staging/greybus/loopback.c 	cport_desc = &bundle->cport_desc[0];
bundle            996 drivers/staging/greybus/loopback.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle           1004 drivers/staging/greybus/loopback.c 	greybus_set_drvdata(bundle, gb);
bundle           1028 drivers/staging/greybus/loopback.c 		 dev_name(&connection->bundle->dev));
bundle           1043 drivers/staging/greybus/loopback.c 					&connection->bundle->dev,
bundle           1072 drivers/staging/greybus/loopback.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle           1094 drivers/staging/greybus/loopback.c static void gb_loopback_disconnect(struct gb_bundle *bundle)
bundle           1096 drivers/staging/greybus/loopback.c 	struct gb_loopback *gb = greybus_get_drvdata(bundle);
bundle           1100 drivers/staging/greybus/loopback.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle           1102 drivers/staging/greybus/loopback.c 		gb_pm_runtime_get_noresume(bundle);
bundle            372 drivers/staging/greybus/power_supply.c 		ret = gb_pm_runtime_get_sync(connection->bundle);
bundle            374 drivers/staging/greybus/power_supply.c 			dev_err(&connection->bundle->dev,
bundle            380 drivers/staging/greybus/power_supply.c 			ret = gb_pm_runtime_put_autosuspend(connection->bundle);
bundle            382 drivers/staging/greybus/power_supply.c 				dev_err(&connection->bundle->dev,
bundle            541 drivers/staging/greybus/power_supply.c 			dev_warn(&connection->bundle->dev,
bundle            674 drivers/staging/greybus/power_supply.c 		dev_err(&connection->bundle->dev, "get property %u\n", psp);
bundle            704 drivers/staging/greybus/power_supply.c 	ret = gb_pm_runtime_get_sync(connection->bundle);
bundle            718 drivers/staging/greybus/power_supply.c 	gb_pm_runtime_put_autosuspend(connection->bundle);
bundle            773 drivers/staging/greybus/power_supply.c 	ret = gb_pm_runtime_get_sync(connection->bundle);
bundle            796 drivers/staging/greybus/power_supply.c 	gb_pm_runtime_put_autosuspend(connection->bundle);
bundle            832 drivers/staging/greybus/power_supply.c 	gbpsy->psy = power_supply_register(&connection->bundle->dev,
bundle            957 drivers/staging/greybus/power_supply.c 			dev_err(&connection->bundle->dev,
bundle            978 drivers/staging/greybus/power_supply.c 			dev_err(&connection->bundle->dev,
bundle           1000 drivers/staging/greybus/power_supply.c 		dev_err(&connection->bundle->dev,
bundle           1008 drivers/staging/greybus/power_supply.c 		dev_err(&connection->bundle->dev,
bundle           1019 drivers/staging/greybus/power_supply.c 		dev_err(&connection->bundle->dev,
bundle           1052 drivers/staging/greybus/power_supply.c static int gb_power_supply_probe(struct gb_bundle *bundle,
bundle           1060 drivers/staging/greybus/power_supply.c 	if (bundle->num_cports != 1)
bundle           1063 drivers/staging/greybus/power_supply.c 	cport_desc = &bundle->cport_desc[0];
bundle           1071 drivers/staging/greybus/power_supply.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle           1083 drivers/staging/greybus/power_supply.c 	greybus_set_drvdata(bundle, supplies);
bundle           1103 drivers/staging/greybus/power_supply.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle           1115 drivers/staging/greybus/power_supply.c static void gb_power_supply_disconnect(struct gb_bundle *bundle)
bundle           1117 drivers/staging/greybus/power_supply.c 	struct gb_power_supplies *supplies = greybus_get_drvdata(bundle);
bundle            259 drivers/staging/greybus/pwm.c 	connection = gb_connection_create(gbphy_dev->bundle,
bundle             58 drivers/staging/greybus/raw.c 	struct device *dev = &raw->connection->bundle->dev;
bundle             92 drivers/staging/greybus/raw.c 	struct device *dev = &connection->bundle->dev;
bundle             93 drivers/staging/greybus/raw.c 	struct gb_raw *raw = greybus_get_drvdata(connection->bundle);
bundle            148 drivers/staging/greybus/raw.c static int gb_raw_probe(struct gb_bundle *bundle,
bundle            157 drivers/staging/greybus/raw.c 	if (bundle->num_cports != 1)
bundle            160 drivers/staging/greybus/raw.c 	cport_desc = &bundle->cport_desc[0];
bundle            168 drivers/staging/greybus/raw.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle            179 drivers/staging/greybus/raw.c 	greybus_set_drvdata(bundle, raw);
bundle            198 drivers/staging/greybus/raw.c 	raw->device = device_create(raw_class, &connection->bundle->dev,
bundle            224 drivers/staging/greybus/raw.c static void gb_raw_disconnect(struct gb_bundle *bundle)
bundle            226 drivers/staging/greybus/raw.c 	struct gb_raw *raw = greybus_get_drvdata(bundle);
bundle            772 drivers/staging/greybus/sdio.c 	connection = gb_connection_create(gbphy_dev->bundle,
bundle             23 drivers/staging/greybus/spi.c 	connection = gb_connection_create(gbphy_dev->bundle,
bundle            832 drivers/staging/greybus/uart.c 	connection = gb_connection_create(gbphy_dev->bundle,
bundle            171 drivers/staging/greybus/usb.c 	connection = gb_connection_create(gbphy_dev->bundle,
bundle             31 drivers/staging/greybus/vibrator.c 	struct gb_bundle *bundle = vib->connection->bundle;
bundle             37 drivers/staging/greybus/vibrator.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle             44 drivers/staging/greybus/vibrator.c 	struct gb_bundle *bundle = vib->connection->bundle;
bundle             47 drivers/staging/greybus/vibrator.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle             58 drivers/staging/greybus/vibrator.c 		gb_pm_runtime_put_autosuspend(bundle);
bundle            116 drivers/staging/greybus/vibrator.c static int gb_vibrator_probe(struct gb_bundle *bundle,
bundle            125 drivers/staging/greybus/vibrator.c 	if (bundle->num_cports != 1)
bundle            128 drivers/staging/greybus/vibrator.c 	cport_desc = &bundle->cport_desc[0];
bundle            136 drivers/staging/greybus/vibrator.c 	connection = gb_connection_create(bundle, le16_to_cpu(cport_desc->id),
bundle            146 drivers/staging/greybus/vibrator.c 	greybus_set_drvdata(bundle, vib);
bundle            162 drivers/staging/greybus/vibrator.c 	dev = device_create(&vibrator_class, &bundle->dev,
bundle            172 drivers/staging/greybus/vibrator.c 	gb_pm_runtime_put_autosuspend(bundle);
bundle            188 drivers/staging/greybus/vibrator.c static void gb_vibrator_disconnect(struct gb_bundle *bundle)
bundle            190 drivers/staging/greybus/vibrator.c 	struct gb_vibrator_device *vib = greybus_get_drvdata(bundle);
bundle            193 drivers/staging/greybus/vibrator.c 	ret = gb_pm_runtime_get_sync(bundle);
bundle            195 drivers/staging/greybus/vibrator.c 		gb_pm_runtime_get_noresume(bundle);
bundle             59 include/linux/greybus.h 	int (*probe)(struct gb_bundle *bundle,
bundle             61 include/linux/greybus.h 	void (*disconnect)(struct gb_bundle *bundle);
bundle             69 include/linux/greybus.h static inline void greybus_set_drvdata(struct gb_bundle *bundle, void *data)
bundle             71 include/linux/greybus.h 	dev_set_drvdata(&bundle->dev, data);
bundle             74 include/linux/greybus.h static inline void *greybus_get_drvdata(struct gb_bundle *bundle)
bundle             76 include/linux/greybus.h 	return dev_get_drvdata(&bundle->dev);
bundle             42 include/linux/greybus/bundle.h int gb_bundle_add(struct gb_bundle *bundle);
bundle             43 include/linux/greybus/bundle.h void gb_bundle_destroy(struct gb_bundle *bundle);
bundle             47 include/linux/greybus/bundle.h static inline int gb_pm_runtime_get_sync(struct gb_bundle *bundle)
bundle             51 include/linux/greybus/bundle.h 	retval = pm_runtime_get_sync(&bundle->dev);
bundle             53 include/linux/greybus/bundle.h 		dev_err(&bundle->dev,
bundle             55 include/linux/greybus/bundle.h 		pm_runtime_put_noidle(&bundle->dev);
bundle             62 include/linux/greybus/bundle.h static inline int gb_pm_runtime_put_autosuspend(struct gb_bundle *bundle)
bundle             66 include/linux/greybus/bundle.h 	pm_runtime_mark_last_busy(&bundle->dev);
bundle             67 include/linux/greybus/bundle.h 	retval = pm_runtime_put_autosuspend(&bundle->dev);
bundle             72 include/linux/greybus/bundle.h static inline void gb_pm_runtime_get_noresume(struct gb_bundle *bundle)
bundle             74 include/linux/greybus/bundle.h 	pm_runtime_get_noresume(&bundle->dev);
bundle             77 include/linux/greybus/bundle.h static inline void gb_pm_runtime_put_noidle(struct gb_bundle *bundle)
bundle             79 include/linux/greybus/bundle.h 	pm_runtime_put_noidle(&bundle->dev);
bundle             83 include/linux/greybus/bundle.h static inline int gb_pm_runtime_get_sync(struct gb_bundle *bundle)
bundle             85 include/linux/greybus/bundle.h static inline int gb_pm_runtime_put_autosuspend(struct gb_bundle *bundle)
bundle             88 include/linux/greybus/bundle.h static inline void gb_pm_runtime_get_noresume(struct gb_bundle *bundle) {}
bundle             89 include/linux/greybus/bundle.h static inline void gb_pm_runtime_put_noidle(struct gb_bundle *bundle) {}
bundle             41 include/linux/greybus/connection.h 	struct gb_bundle		*bundle;
bundle             70 include/linux/greybus/connection.h struct gb_connection *gb_connection_create(struct gb_bundle *bundle,
bundle             72 include/linux/greybus/connection.h struct gb_connection *gb_connection_create_flags(struct gb_bundle *bundle,
bundle             75 include/linux/greybus/connection.h struct gb_connection *gb_connection_create_offloaded(struct gb_bundle *bundle,
bundle            150 include/linux/greybus/greybus_manifest.h 	__u8	bundle;
bundle            165 include/linux/greybus/greybus_manifest.h 		struct greybus_descriptor_bundle	bundle;
bundle            875 include/rdma/uverbs_ioctl.h __malloc void *_uverbs_alloc(struct uverbs_attr_bundle *bundle, size_t size,
bundle            878 include/rdma/uverbs_ioctl.h static inline __malloc void *uverbs_alloc(struct uverbs_attr_bundle *bundle,
bundle            881 include/rdma/uverbs_ioctl.h 	return _uverbs_alloc(bundle, size, GFP_KERNEL);
bundle            884 include/rdma/uverbs_ioctl.h static inline __malloc void *uverbs_zalloc(struct uverbs_attr_bundle *bundle,
bundle            887 include/rdma/uverbs_ioctl.h 	return _uverbs_alloc(bundle, size, GFP_KERNEL | __GFP_ZERO);
bundle            892 include/rdma/uverbs_ioctl.h int uverbs_copy_to_struct_or_zero(const struct uverbs_attr_bundle *bundle,
bundle            912 include/rdma/uverbs_ioctl.h static inline __malloc void *uverbs_alloc(struct uverbs_attr_bundle *bundle,
bundle            917 include/rdma/uverbs_ioctl.h static inline __malloc void *uverbs_zalloc(struct uverbs_attr_bundle *bundle,
bundle            930 include/rdma/uverbs_ioctl.h uverbs_copy_to_struct_or_zero(const struct uverbs_attr_bundle *bundle,
bundle            160 net/xfrm/xfrm_policy.c static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr);
bundle           2531 net/xfrm/xfrm_policy.c 					    struct xfrm_dst **bundle,
bundle           2568 net/xfrm/xfrm_policy.c 		bundle[i] = xdst;
bundle           2640 net/xfrm/xfrm_policy.c 	xfrm_init_pmtu(bundle, nx);
bundle           2718 net/xfrm/xfrm_policy.c 	struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
bundle           2734 net/xfrm/xfrm_policy.c 	dst = xfrm_bundle_create(pols[0], xfrm, bundle, err, fl, dst_orig);
bundle           3758 net/xfrm/xfrm_policy.c static void xfrm_init_pmtu(struct xfrm_dst **bundle, int nr)
bundle           3761 net/xfrm/xfrm_policy.c 		struct xfrm_dst *xdst = bundle[nr];
bundle           3787 net/xfrm/xfrm_policy.c 	struct xfrm_dst *bundle[XFRM_MAX_DEPTH];
bundle           3812 net/xfrm/xfrm_policy.c 		bundle[nr++] = xdst;
bundle           3834 net/xfrm/xfrm_policy.c 	xdst = bundle[start_from - 1];
bundle           3846 net/xfrm/xfrm_policy.c 		xdst = bundle[start_from - 1];