mach               69 arch/arm/mach-omap1/include/mach/uncompress.h #define _DEBUG_LL_ENTRY(mach, dbg_uart, dbg_shft, dbg_id)		\
mach               70 arch/arm/mach-omap1/include/mach/uncompress.h 	if (machine_is_##mach()) {					\
mach               78 arch/arm/mach-omap1/include/mach/uncompress.h #define DEBUG_LL_OMAP7XX(p, mach)					\
mach               79 arch/arm/mach-omap1/include/mach/uncompress.h 	_DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP7XX_PORT_SHIFT,	\
mach               82 arch/arm/mach-omap1/include/mach/uncompress.h #define DEBUG_LL_OMAP1(p, mach)						\
mach               83 arch/arm/mach-omap1/include/mach/uncompress.h 	_DEBUG_LL_ENTRY(mach, OMAP1_UART##p##_BASE, OMAP_PORT_SHIFT,	\
mach               93 arch/mips/fw/arc/identify.c 	struct smatch *mach;
mach              112 arch/mips/fw/arc/identify.c 	mach = string_to_mach(iname);
mach              113 arch/mips/fw/arc/identify.c 	system_type = mach->liname;
mach              115 arch/mips/fw/arc/identify.c 	prom_flags = mach->flags;
mach               24 arch/mips/generic/init.c static __initdata const struct mips_machine *mach;
mach               54 arch/mips/generic/init.c 				mach = check_mach;
mach               72 arch/mips/generic/init.c 			mach = check_mach;
mach               79 arch/mips/generic/init.c 		BUG_ON(!mach);
mach               82 arch/mips/generic/init.c 		fdt = mach->fdt;
mach              106 arch/mips/generic/init.c 	if (mach && mach->fixup_fdt)
mach              107 arch/mips/generic/init.c 		fdt = mach->fixup_fdt(fdt, mach_match_data);
mach              161 arch/mips/generic/init.c 	} else if (mach && mach->measure_hpt_freq) {
mach              162 arch/mips/generic/init.c 		mips_hpt_frequency = mach->measure_hpt_freq();
mach               28 arch/mips/include/asm/machine.h #define for_each_mips_machine(mach)					\
mach               29 arch/mips/include/asm/machine.h 	for ((mach) = (struct mips_machine *)&__mips_machines_start;	\
mach               30 arch/mips/include/asm/machine.h 	     (mach) < (struct mips_machine *)&__mips_machines_end;	\
mach               31 arch/mips/include/asm/machine.h 	     (mach)++)
mach               44 arch/mips/include/asm/machine.h mips_machine_is_compatible(const struct mips_machine *mach, const void *fdt)
mach               48 arch/mips/include/asm/machine.h 	if (!mach->matches)
mach               51 arch/mips/include/asm/machine.h 	for (match = mach->matches; match->compatible[0]; match++) {
mach               14 arch/mips/kernel/mips_machine.c #define for_each_machine(mach) \
mach               15 arch/mips/kernel/mips_machine.c 	for ((mach) = (struct mips_machine *)&__mips_machines_start; \
mach               16 arch/mips/kernel/mips_machine.c 	     (mach) && \
mach               17 arch/mips/kernel/mips_machine.c 	     (unsigned long)(mach) < (unsigned long)&__mips_machines_end; \
mach               18 arch/mips/kernel/mips_machine.c 	     (mach)++)
mach               22 arch/mips/kernel/mips_machine.c 	struct mips_machine *mach;
mach               24 arch/mips/kernel/mips_machine.c 	for_each_machine(mach) {
mach               25 arch/mips/kernel/mips_machine.c 		if (mach->mach_id == NULL)
mach               28 arch/mips/kernel/mips_machine.c 		if (strcmp(mach->mach_id, id) == 0) {
mach               29 arch/mips/kernel/mips_machine.c 			mips_machtype = mach->mach_type;
mach               36 arch/mips/kernel/mips_machine.c 	for_each_machine(mach)
mach               37 arch/mips/kernel/mips_machine.c 		pr_err("%-24s %s\n", mach->mach_id, mach->mach_name);
mach               46 arch/mips/kernel/mips_machine.c 	struct mips_machine *mach;
mach               48 arch/mips/kernel/mips_machine.c 	for_each_machine(mach) {
mach               49 arch/mips/kernel/mips_machine.c 		if (mips_machtype == mach->mach_type) {
mach               50 arch/mips/kernel/mips_machine.c 			mips_machine = mach;
mach              275 arch/powerpc/include/asm/machdep.h #define __define_machine_initcall(mach, fn, id) \
mach              276 arch/powerpc/include/asm/machdep.h 	static int __init __machine_initcall_##mach##_##fn(void) { \
mach              277 arch/powerpc/include/asm/machdep.h 		if (machine_is(mach)) return fn(); \
mach              280 arch/powerpc/include/asm/machdep.h 	__define_initcall(__machine_initcall_##mach##_##fn, id);
mach              282 arch/powerpc/include/asm/machdep.h #define machine_early_initcall(mach, fn)	__define_machine_initcall(mach, fn, early)
mach              283 arch/powerpc/include/asm/machdep.h #define machine_core_initcall(mach, fn)		__define_machine_initcall(mach, fn, 1)
mach              284 arch/powerpc/include/asm/machdep.h #define machine_core_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 1s)
mach              285 arch/powerpc/include/asm/machdep.h #define machine_postcore_initcall(mach, fn)	__define_machine_initcall(mach, fn, 2)
mach              286 arch/powerpc/include/asm/machdep.h #define machine_postcore_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 2s)
mach              287 arch/powerpc/include/asm/machdep.h #define machine_arch_initcall(mach, fn)		__define_machine_initcall(mach, fn, 3)
mach              288 arch/powerpc/include/asm/machdep.h #define machine_arch_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 3s)
mach              289 arch/powerpc/include/asm/machdep.h #define machine_subsys_initcall(mach, fn)	__define_machine_initcall(mach, fn, 4)
mach              290 arch/powerpc/include/asm/machdep.h #define machine_subsys_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 4s)
mach              291 arch/powerpc/include/asm/machdep.h #define machine_fs_initcall(mach, fn)		__define_machine_initcall(mach, fn, 5)
mach              292 arch/powerpc/include/asm/machdep.h #define machine_fs_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 5s)
mach              293 arch/powerpc/include/asm/machdep.h #define machine_rootfs_initcall(mach, fn)	__define_machine_initcall(mach, fn, rootfs)
mach              294 arch/powerpc/include/asm/machdep.h #define machine_device_initcall(mach, fn)	__define_machine_initcall(mach, fn, 6)
mach              295 arch/powerpc/include/asm/machdep.h #define machine_device_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 6s)
mach              296 arch/powerpc/include/asm/machdep.h #define machine_late_initcall(mach, fn)		__define_machine_initcall(mach, fn, 7)
mach              297 arch/powerpc/include/asm/machdep.h #define machine_late_initcall_sync(mach, fn)	__define_machine_initcall(mach, fn, 7s)
mach              108 arch/s390/kernel/early.c 	struct sysinfo_1_1_1 *mach = (struct sysinfo_1_1_1 *)&sysinfo_page;
mach              112 arch/s390/kernel/early.c 	if (stsi(mach, 1, 1, 1))
mach              114 arch/s390/kernel/early.c 	EBCASC(mach->manufacturer, sizeof(mach->manufacturer));
mach              115 arch/s390/kernel/early.c 	EBCASC(mach->type, sizeof(mach->type));
mach              116 arch/s390/kernel/early.c 	EBCASC(mach->model, sizeof(mach->model));
mach              117 arch/s390/kernel/early.c 	EBCASC(mach->model_capacity, sizeof(mach->model_capacity));
mach              119 arch/s390/kernel/early.c 		mach->manufacturer, mach->type,
mach              120 arch/s390/kernel/early.c 		mach->model, mach->model_capacity);
mach             1436 arch/s390/kvm/kvm-s390.c 	struct kvm_s390_vm_cpu_machine *mach;
mach             1439 arch/s390/kvm/kvm-s390.c 	mach = kzalloc(sizeof(*mach), GFP_KERNEL);
mach             1440 arch/s390/kvm/kvm-s390.c 	if (!mach) {
mach             1444 arch/s390/kvm/kvm-s390.c 	get_cpu_id((struct cpuid *) &mach->cpuid);
mach             1445 arch/s390/kvm/kvm-s390.c 	mach->ibc = sclp.ibc;
mach             1446 arch/s390/kvm/kvm-s390.c 	memcpy(&mach->fac_mask, kvm->arch.model.fac_mask,
mach             1448 arch/s390/kvm/kvm-s390.c 	memcpy((unsigned long *)&mach->fac_list, S390_lowcore.stfle_fac_list,
mach             1454 arch/s390/kvm/kvm-s390.c 		 mach->fac_mask[0],
mach             1455 arch/s390/kvm/kvm-s390.c 		 mach->fac_mask[1],
mach             1456 arch/s390/kvm/kvm-s390.c 		 mach->fac_mask[2]);
mach             1458 arch/s390/kvm/kvm-s390.c 		 mach->fac_list[0],
mach             1459 arch/s390/kvm/kvm-s390.c 		 mach->fac_list[1],
mach             1460 arch/s390/kvm/kvm-s390.c 		 mach->fac_list[2]);
mach             1461 arch/s390/kvm/kvm-s390.c 	if (copy_to_user((void __user *)attr->addr, mach, sizeof(*mach)))
mach             1463 arch/s390/kvm/kvm-s390.c 	kfree(mach);
mach               60 arch/sh/include/asm/kexec.h 		__asm__ __volatile__ ("sts mach, %0" : "=r" (newregs->mach));
mach               51 arch/sh/include/uapi/asm/ptrace_32.h 	unsigned long mach;
mach              188 arch/sh/kernel/kgdb.c 	{ "mach",	GDB_SIZEOF_REG, offsetof(struct pt_regs, mach) },
mach               60 arch/sh/kernel/process_32.c 	       regs->mach, regs->macl, regs->gbr, regs->pr);
mach              298 arch/sh/kernel/ptrace_32.c 	REG_OFFSET_NAME(mach),
mach              129 arch/sh/kernel/signal_32.c 	COPY(gbr);	COPY(mach);
mach              233 arch/sh/kernel/signal_32.c 	COPY(gbr);	COPY(mach);
mach               70 drivers/net/ethernet/mscc/ocelot.c 	u32 macl = 0, mach = 0;
mach               75 drivers/net/ethernet/mscc/ocelot.c 	mach |= vid    << 16;
mach               76 drivers/net/ethernet/mscc/ocelot.c 	mach |= mac[0] << 8;
mach               77 drivers/net/ethernet/mscc/ocelot.c 	mach |= mac[1] << 0;
mach               84 drivers/net/ethernet/mscc/ocelot.c 	ocelot_write(ocelot, mach, ANA_TABLES_MACHDATA);
mach              858 drivers/net/ethernet/mscc/ocelot.c 	u32 val, dst, macl, mach;
mach              886 drivers/net/ethernet/mscc/ocelot.c 	mach = ocelot_read(ocelot, ANA_TABLES_MACHDATA);
mach              888 drivers/net/ethernet/mscc/ocelot.c 	mac[0] = (mach >> 8)  & 0xff;
mach              889 drivers/net/ethernet/mscc/ocelot.c 	mac[1] = (mach >> 0)  & 0xff;
mach              895 drivers/net/ethernet/mscc/ocelot.c 	entry->vid = (mach >> 16) & 0xfff;
mach              268 drivers/usb/gadget/udc/pxa25x_udc.c 	struct pxa2xx_udc_mach_info		*mach = the_controller->mach;
mach              269 drivers/usb/gadget/udc/pxa25x_udc.c 	int off_level = mach->gpio_pullup_inverted;
mach              271 drivers/usb/gadget/udc/pxa25x_udc.c 	if (gpio_is_valid(mach->gpio_pullup))
mach              272 drivers/usb/gadget/udc/pxa25x_udc.c 		gpio_set_value(mach->gpio_pullup, off_level);
mach              273 drivers/usb/gadget/udc/pxa25x_udc.c 	else if (mach->udc_command)
mach              274 drivers/usb/gadget/udc/pxa25x_udc.c 		mach->udc_command(PXA2XX_UDC_CMD_DISCONNECT);
mach              279 drivers/usb/gadget/udc/pxa25x_udc.c 	struct pxa2xx_udc_mach_info		*mach = the_controller->mach;
mach              280 drivers/usb/gadget/udc/pxa25x_udc.c 	int on_level = !mach->gpio_pullup_inverted;
mach              282 drivers/usb/gadget/udc/pxa25x_udc.c 	if (gpio_is_valid(mach->gpio_pullup))
mach              283 drivers/usb/gadget/udc/pxa25x_udc.c 		gpio_set_value(mach->gpio_pullup, on_level);
mach              284 drivers/usb/gadget/udc/pxa25x_udc.c 	else if (mach->udc_command)
mach              285 drivers/usb/gadget/udc/pxa25x_udc.c 		mach->udc_command(PXA2XX_UDC_CMD_CONNECT);
mach             1195 drivers/usb/gadget/udc/pxa25x_udc.c 	if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command)
mach             2386 drivers/usb/gadget/udc/pxa25x_udc.c 	dev->mach = dev_get_platdata(&pdev->dev);
mach             2390 drivers/usb/gadget/udc/pxa25x_udc.c 	if (gpio_is_valid(dev->mach->gpio_pullup)) {
mach             2391 drivers/usb/gadget/udc/pxa25x_udc.c 		retval = devm_gpio_request(&pdev->dev, dev->mach->gpio_pullup,
mach             2396 drivers/usb/gadget/udc/pxa25x_udc.c 				dev->mach->gpio_pullup, retval);
mach             2399 drivers/usb/gadget/udc/pxa25x_udc.c 		gpio_direction_output(dev->mach->gpio_pullup, 0);
mach             2501 drivers/usb/gadget/udc/pxa25x_udc.c 	if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command)
mach              115 drivers/usb/gadget/udc/pxa25x_udc.h 	struct pxa2xx_udc_mach_info		*mach;
mach             2362 drivers/usb/gadget/udc/pxa27x_udc.c 	struct pxa2xx_udc_mach_info *mach = dev_get_platdata(&pdev->dev);
mach             2365 drivers/usb/gadget/udc/pxa27x_udc.c 	if (mach) {
mach             2366 drivers/usb/gadget/udc/pxa27x_udc.c 		gpio_flags = mach->gpio_pullup_inverted ? GPIOF_ACTIVE_LOW : 0;
mach             2367 drivers/usb/gadget/udc/pxa27x_udc.c 		gpio = mach->gpio_pullup;
mach             2374 drivers/usb/gadget/udc/pxa27x_udc.c 			udc->gpiod = gpio_to_desc(mach->gpio_pullup);
mach             2376 drivers/usb/gadget/udc/pxa27x_udc.c 		udc->udc_command = mach->udc_command;
mach              368 drivers/video/fbdev/pxafb.c static struct pxafb_mode_info *pxafb_getmode(struct pxafb_mach_info *mach,
mach              372 drivers/video/fbdev/pxafb.c 	struct pxafb_mode_info *modelist = mach->modes;
mach              376 drivers/video/fbdev/pxafb.c 	for (i = 0; i < mach->num_modes; i++) {
mach              236 drivers/video/fbdev/w100fb.c 	struct w100_tg_info *tg = par->mach->tg;
mach              414 drivers/video/fbdev/w100fb.c 	struct w100_tg_info *tg = par->mach->tg;
mach              442 drivers/video/fbdev/w100fb.c 	struct w100_mode *modelist = par->mach->modelist;
mach              446 drivers/video/fbdev/w100fb.c 	for (i = 0 ; i < par->mach->num_modes ; i++) {
mach              481 drivers/video/fbdev/w100fb.c 	if (par->mach->mem && ((var->xres*var->yres*BITS_PER_PIXEL/8) > (par->mach->mem->size+1)))
mach              484 drivers/video/fbdev/w100fb.c 	if (!par->mach->mem && ((var->xres*var->yres*BITS_PER_PIXEL/8) > (MEM_INT_SIZE+1)))
mach              536 drivers/video/fbdev/w100fb.c 			info->fix.smem_len = par->mach->mem->size+1;
mach              570 drivers/video/fbdev/w100fb.c 		memsize=par->mach->mem->size;
mach              588 drivers/video/fbdev/w100fb.c 		memsize=par->mach->mem->size;
mach              608 drivers/video/fbdev/w100fb.c 	struct w100_tg_info *tg = par->mach->tg;
mach              623 drivers/video/fbdev/w100fb.c 	struct w100_tg_info *tg = par->mach->tg;
mach              692 drivers/video/fbdev/w100fb.c 	par->mach = inf;
mach              878 drivers/video/fbdev/w100fb.c 	struct w100_gpio_regs *gpio = par->mach->gpio;
mach             1206 drivers/video/fbdev/w100fb.c 	w100_pwr_state.clk_pin_cntl.f.xtalin_dbl_en = par->mach->xtal_dbl ? 1 : 0;
mach             1297 drivers/video/fbdev/w100fb.c 	struct w100_gen_regs *regs = par->mach->regs;
mach             1364 drivers/video/fbdev/w100fb.c 	struct w100_mem_info *mem = par->mach->mem;
mach             1365 drivers/video/fbdev/w100fb.c 	struct w100_bm_mem_info *bm_mem = par->mach->bm_mem;
mach             1388 drivers/video/fbdev/w100fb.c 		extmem_location.f.mc_ext_mem_top = (W100_FB_BASE+par->mach->mem->size) >> 8;
mach             1512 drivers/video/fbdev/w100fb.c 		hsync=par->mach->xtal_freq;
mach               97 include/sound/sof.h 		      struct snd_soc_acpi_mach *mach,
mach              144 include/video/w100fb.h 	struct w100fb_mach_info *mach;
mach              162 sound/oss/dmasound/dmasound.h     MACHINE mach;	/* machine dependent things */
mach              189 sound/oss/dmasound/dmasound.h 	return dmasound.mach.setVolume(volume);
mach              194 sound/oss/dmasound/dmasound.h 	return dmasound.mach.setBass ? dmasound.mach.setBass(bass) : 50;
mach              199 sound/oss/dmasound/dmasound.h 	return dmasound.mach.setTreble ? dmasound.mach.setTreble(treble) : 50;
mach              204 sound/oss/dmasound/dmasound.h 	return dmasound.mach.setGain ? dmasound.mach.setGain(gain) : 100;
mach             1593 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach = machFalcon;
mach             1594 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach.default_soft = def_soft ;
mach             1595 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach.default_hard = def_hard_falcon ;
mach             1598 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach = machTT;
mach             1599 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach.default_soft = def_soft ;
mach             1600 sound/oss/dmasound/dmasound_atari.c 		dmasound.mach.default_hard = def_hard_tt ;
mach              230 sound/oss/dmasound/dmasound_core.c 	dmasound.mach.silence(); /* _MUST_ stop DMA */
mach              235 sound/oss/dmasound/dmasound_core.c 	return dmasound.mach.setFormat(format);
mach              249 sound/oss/dmasound/dmasound_core.c 	if (dmasound.mach.max_dsp_speed &&
mach              250 sound/oss/dmasound/dmasound_core.c 	   (speed > dmasound.mach.max_dsp_speed))
mach              251 sound/oss/dmasound/dmasound_core.c 		speed = dmasound.mach.max_dsp_speed ;
mach              329 sound/oss/dmasound/dmasound_core.c 	if (!try_module_get(dmasound.mach.owner)) {
mach              342 sound/oss/dmasound/dmasound_core.c 	module_put(dmasound.mach.owner);
mach              358 sound/oss/dmasound/dmasound_core.c 		    strlcpy(info.id, dmasound.mach.name2, sizeof(info.id));
mach              359 sound/oss/dmasound/dmasound_core.c 		    strlcpy(info.name, dmasound.mach.name2, sizeof(info.name));
mach              366 sound/oss/dmasound/dmasound_core.c 	if (dmasound.mach.mixer_ioctl)
mach              367 sound/oss/dmasound/dmasound_core.c 	    return dmasound.mach.mixer_ioctl(cmd, arg);
mach              403 sound/oss/dmasound/dmasound_core.c 	if (dmasound.mach.mixer_init)
mach              404 sound/oss/dmasound/dmasound_core.c 	    dmasound.mach.mixer_init();
mach              427 sound/oss/dmasound/dmasound_core.c 		sq->buffers[i] = dmasound.mach.dma_alloc(size, GFP_KERNEL);
mach              430 sound/oss/dmasound/dmasound_core.c 				dmasound.mach.dma_free(sq->buffers[i], size);
mach              445 sound/oss/dmasound/dmasound_core.c 			dmasound.mach.dma_free(sq->buffers[i], sq->bufSize);
mach              469 sound/oss/dmasound/dmasound_core.c 	dmasound.mach.init();
mach              535 sound/oss/dmasound/dmasound_core.c 	    setup_func = dmasound.mach.write_sq_setup;
mach              544 sound/oss/dmasound/dmasound_core.c 	dmasound.mach.play();
mach              568 sound/oss/dmasound/dmasound_core.c 		dmasound.mach.init() ;
mach              767 sound/oss/dmasound/dmasound_core.c 	if (!try_module_get(dmasound.mach.owner)) {
mach              781 sound/oss/dmasound/dmasound_core.c 	if (dmasound.mach.sq_open)
mach              782 sound/oss/dmasound/dmasound_core.c 	    dmasound.mach.sq_open(file->f_mode);
mach              798 sound/oss/dmasound/dmasound_core.c 		dmasound.soft = dmasound.mach.default_soft ;
mach              799 sound/oss/dmasound/dmasound_core.c 		dmasound.dsp = dmasound.mach.default_soft ;
mach              800 sound/oss/dmasound/dmasound_core.c 		dmasound.hard = dmasound.mach.default_hard ;
mach              816 sound/oss/dmasound/dmasound_core.c 	module_put(dmasound.mach.owner);
mach              898 sound/oss/dmasound/dmasound_core.c 		dmasound.hard = dmasound.mach.default_hard ;
mach              901 sound/oss/dmasound/dmasound_core.c 	module_put(dmasound.mach.owner);
mach             1003 sound/oss/dmasound/dmasound_core.c 		fmt = dmasound.mach.hardware_afmts ; /* this is what OSS says.. */
mach             1143 sound/oss/dmasound/dmasound_core.c 		val = dmasound.mach.capabilities & 0xffffff00;
mach             1195 sound/oss/dmasound/dmasound_core.c 		dmasound.soft = dmasound.mach.default_soft ;
mach             1196 sound/oss/dmasound/dmasound_core.c 		dmasound.hard = dmasound.mach.default_hard ;
mach             1197 sound/oss/dmasound/dmasound_core.c 		dmasound.dsp = dmasound.mach.default_soft ;
mach             1278 sound/oss/dmasound/dmasound_core.c 	if (!try_module_get(dmasound.mach.owner))
mach             1285 sound/oss/dmasound/dmasound_core.c 		dmasound.mach.name, (DMASOUND_CORE_REVISION<<4) +
mach             1286 sound/oss/dmasound/dmasound_core.c 		((dmasound.mach.version>>8) & 0x0f));
mach             1289 sound/oss/dmasound/dmasound_core.c 		DMASOUND_CORE_REVISION, DMASOUND_CORE_EDITION, dmasound.mach.name2,
mach             1290 sound/oss/dmasound/dmasound_core.c 		(dmasound.mach.version >> 8), (dmasound.mach.version & 0xff)) ;
mach             1296 sound/oss/dmasound/dmasound_core.c 	if (dmasound.mach.state_info)
mach             1297 sound/oss/dmasound/dmasound_core.c 		len += dmasound.mach.state_info(buffer+len,
mach             1352 sound/oss/dmasound/dmasound_core.c 	module_put(dmasound.mach.owner);
mach             1419 sound/oss/dmasound/dmasound_core.c 	if (!dmasound.mach.irqinit()) {
mach             1428 sound/oss/dmasound/dmasound_core.c 		dmasound.mach.name, (DMASOUND_CORE_REVISION<<4) +
mach             1429 sound/oss/dmasound/dmasound_core.c 		((dmasound.mach.version>>8) & 0x0f));
mach             1432 sound/oss/dmasound/dmasound_core.c 		DMASOUND_CORE_REVISION, DMASOUND_CORE_EDITION, dmasound.mach.name2,
mach             1433 sound/oss/dmasound/dmasound_core.c 		(dmasound.mach.version >> 8), (dmasound.mach.version & 0xff)) ;
mach             1445 sound/oss/dmasound/dmasound_core.c 		dmasound.mach.irqcleanup();
mach              717 sound/oss/dmasound/dmasound_paula.c 	dmasound.mach = machAmiga;
mach              718 sound/oss/dmasound/dmasound_paula.c 	dmasound.mach.default_hard = def_hard ;
mach              719 sound/oss/dmasound/dmasound_paula.c 	dmasound.mach.default_soft = def_soft ;
mach              622 sound/oss/dmasound/dmasound_q40.c 	    dmasound.mach = machQ40;
mach              623 sound/oss/dmasound/dmasound_q40.c 	    dmasound.mach.default_hard = def_hard ;
mach              624 sound/oss/dmasound/dmasound_q40.c 	    dmasound.mach.default_soft = def_soft ;
mach              241 sound/soc/intel/atom/sst/sst_acpi.c 	struct snd_soc_acpi_mach *mach;
mach              252 sound/soc/intel/atom/sst/sst_acpi.c 	mach = (struct snd_soc_acpi_mach *)id->driver_data;
mach              253 sound/soc/intel/atom/sst/sst_acpi.c 	mach = snd_soc_acpi_find_machine(mach);
mach              254 sound/soc/intel/atom/sst/sst_acpi.c 	if (mach == NULL) {
mach              260 sound/soc/intel/atom/sst/sst_acpi.c 		mach->pdata = &byt_rvp_platform_data;
mach              262 sound/soc/intel/atom/sst/sst_acpi.c 		mach->pdata = &chv_platform_data;
mach              263 sound/soc/intel/atom/sst/sst_acpi.c 	pdata = mach->pdata;
mach              283 sound/soc/intel/atom/sst/sst_acpi.c 	mach->mach_params.acpi_ipc_irq_index =
mach              298 sound/soc/intel/atom/sst/sst_acpi.c 	mdev = platform_device_register_data(dev, mach->drv_name, -1,
mach              299 sound/soc/intel/atom/sst/sst_acpi.c 					(const void *)mach, sizeof(*mach));
mach              302 sound/soc/intel/atom/sst/sst_acpi.c 			mach->drv_name);
mach              308 sound/soc/intel/atom/sst/sst_acpi.c 	strcpy(ctx->firmware_name, mach->fw_filename);
mach              342 sound/soc/intel/boards/bdw-rt5677.c 	struct snd_soc_acpi_mach *mach;
mach              356 sound/soc/intel/boards/bdw-rt5677.c 	mach = (&pdev->dev)->platform_data;
mach              358 sound/soc/intel/boards/bdw-rt5677.c 						    mach->mach_params.platform);
mach              272 sound/soc/intel/boards/broadwell.c 	struct snd_soc_acpi_mach *mach;
mach              278 sound/soc/intel/boards/broadwell.c 	mach = (&pdev->dev)->platform_data;
mach              280 sound/soc/intel/boards/broadwell.c 						    mach->mach_params.platform);
mach              662 sound/soc/intel/boards/bxt_da7219_max98357a.c 	struct snd_soc_acpi_mach *mach;
mach              715 sound/soc/intel/boards/bxt_da7219_max98357a.c 	mach = (&pdev->dev)->platform_data;
mach              716 sound/soc/intel/boards/bxt_da7219_max98357a.c 	platform_name = mach->mach_params.platform;
mach              591 sound/soc/intel/boards/bxt_rt298.c 	struct snd_soc_acpi_mach *mach;
mach              621 sound/soc/intel/boards/bxt_rt298.c 	mach = (&pdev->dev)->platform_data;
mach              622 sound/soc/intel/boards/bxt_rt298.c 	platform_name = mach->mach_params.platform;
mach              226 sound/soc/intel/boards/bytcht_cx2072x.c 	struct snd_soc_acpi_mach *mach;
mach              232 sound/soc/intel/boards/bytcht_cx2072x.c 	mach = dev_get_platdata(&pdev->dev);
mach              244 sound/soc/intel/boards/bytcht_cx2072x.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              254 sound/soc/intel/boards/bytcht_cx2072x.c 						    mach->mach_params.platform);
mach              227 sound/soc/intel/boards/bytcht_da7213.c 	struct snd_soc_acpi_mach *mach;
mach              234 sound/soc/intel/boards/bytcht_da7213.c 	mach = (&pdev->dev)->platform_data;
mach              247 sound/soc/intel/boards/bytcht_da7213.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              256 sound/soc/intel/boards/bytcht_da7213.c 	platform_name = mach->mach_params.platform;
mach              467 sound/soc/intel/boards/bytcht_es8316.c 	struct snd_soc_acpi_mach *mach;
mach              480 sound/soc/intel/boards/bytcht_es8316.c 	mach = dev->platform_data;
mach              491 sound/soc/intel/boards/bytcht_es8316.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              501 sound/soc/intel/boards/bytcht_es8316.c 	platform_name = mach->mach_params.platform;
mach              513 sound/soc/intel/boards/bytcht_es8316.c 		   mach->mach_params.acpi_ipc_irq_index == 0) {
mach             1163 sound/soc/intel/boards/bytcr_rt5640.c 	struct snd_soc_acpi_mach *mach;
mach             1177 sound/soc/intel/boards/bytcr_rt5640.c 	mach = byt_rt5640_card.dev->platform_data;
mach             1190 sound/soc/intel/boards/bytcr_rt5640.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach             1203 sound/soc/intel/boards/bytcr_rt5640.c 		if (mach->mach_params.acpi_ipc_irq_index == 0)
mach             1233 sound/soc/intel/boards/bytcr_rt5640.c 		pkg_found = snd_soc_acpi_find_package_from_hid(mach->id,
mach             1331 sound/soc/intel/boards/bytcr_rt5640.c 	platform_name = mach->mach_params.platform;
mach              875 sound/soc/intel/boards/bytcr_rt5651.c 	struct snd_soc_acpi_mach *mach;
mach              892 sound/soc/intel/boards/bytcr_rt5651.c 	mach = byt_rt5651_card.dev->platform_data;
mach              905 sound/soc/intel/boards/bytcr_rt5651.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              912 sound/soc/intel/boards/bytcr_rt5651.c 		dev_err(&pdev->dev, "Error cannot find '%s' dev\n", mach->id);
mach              926 sound/soc/intel/boards/bytcr_rt5651.c 		if (mach->mach_params.acpi_ipc_irq_index == 0)
mach              956 sound/soc/intel/boards/bytcr_rt5651.c 		pkg_found = snd_soc_acpi_find_package_from_hid(mach->id,
mach             1096 sound/soc/intel/boards/bytcr_rt5651.c 	platform_name = mach->mach_params.platform;
mach              531 sound/soc/intel/boards/cht_bsw_max98090_ti.c 	struct snd_soc_acpi_mach *mach;
mach              556 sound/soc/intel/boards/cht_bsw_max98090_ti.c 	mach = (&pdev->dev)->platform_data;
mach              557 sound/soc/intel/boards/cht_bsw_max98090_ti.c 	platform_name = mach->mach_params.platform;
mach              251 sound/soc/intel/boards/cht_bsw_nau8824.c 	struct snd_soc_acpi_mach *mach;
mach              262 sound/soc/intel/boards/cht_bsw_nau8824.c 	mach = (&pdev->dev)->platform_data;
mach              263 sound/soc/intel/boards/cht_bsw_nau8824.c 	platform_name = mach->mach_params.platform;
mach              529 sound/soc/intel/boards/cht_bsw_rt5645.c 	struct snd_soc_acpi_mach *mach;
mach              544 sound/soc/intel/boards/cht_bsw_rt5645.c 	mach = (&pdev->dev)->platform_data;
mach              548 sound/soc/intel/boards/cht_bsw_rt5645.c 			(!strncmp(snd_soc_cards[i].codec_id, mach->id, 8))) {
mach              575 sound/soc/intel/boards/cht_bsw_rt5645.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              588 sound/soc/intel/boards/cht_bsw_rt5645.c 		if (mach->mach_params.acpi_ipc_irq_index == 0)
mach              618 sound/soc/intel/boards/cht_bsw_rt5645.c 		pkg_found = snd_soc_acpi_find_package_from_hid(mach->id,
mach              668 sound/soc/intel/boards/cht_bsw_rt5645.c 	platform_name = mach->mach_params.platform;
mach              404 sound/soc/intel/boards/cht_bsw_rt5672.c 	struct snd_soc_acpi_mach *mach = pdev->dev.platform_data;
mach              416 sound/soc/intel/boards/cht_bsw_rt5672.c 	adev = acpi_dev_get_first_match_dev(mach->id, NULL, -1);
mach              432 sound/soc/intel/boards/cht_bsw_rt5672.c 	platform_name = mach->mach_params.platform;
mach              592 sound/soc/intel/boards/glk_rt5682_max98357a.c 	struct snd_soc_acpi_mach *mach;
mach              608 sound/soc/intel/boards/glk_rt5682_max98357a.c 	mach = (&pdev->dev)->platform_data;
mach              609 sound/soc/intel/boards/glk_rt5682_max98357a.c 	platform_name = mach->mach_params.platform;
mach              190 sound/soc/intel/boards/haswell.c 	struct snd_soc_acpi_mach *mach;
mach              196 sound/soc/intel/boards/haswell.c 	mach = (&pdev->dev)->platform_data;
mach              198 sound/soc/intel/boards/haswell.c 						    mach->mach_params.platform);
mach              950 sound/soc/intel/boards/kbl_rt5663_max98927.c 	struct snd_soc_acpi_mach *mach;
mach              965 sound/soc/intel/boards/kbl_rt5663_max98927.c 	mach = (&pdev->dev)->platform_data;
mach              966 sound/soc/intel/boards/kbl_rt5663_max98927.c 	if (mach)
mach              967 sound/soc/intel/boards/kbl_rt5663_max98927.c 		dmic_constraints = mach->mach_params.dmic_num == 2 ?
mach              648 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c 	struct snd_soc_acpi_mach *mach;
mach              659 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c 	mach = (&pdev->dev)->platform_data;
mach              660 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c 	if (mach)
mach              661 sound/soc/intel/boards/kbl_rt5663_rt5514_max98927.c 		dmic_constraints = mach->mach_params.dmic_num == 2 ?
mach              156 sound/soc/intel/boards/skl_hda_dsp_generic.c 	struct snd_soc_acpi_mach *mach;
mach              168 sound/soc/intel/boards/skl_hda_dsp_generic.c 	mach = (&pdev->dev)->platform_data;
mach              169 sound/soc/intel/boards/skl_hda_dsp_generic.c 	if (!mach)
mach              172 sound/soc/intel/boards/skl_hda_dsp_generic.c 	ret = skl_hda_fill_card_info(&mach->mach_params);
mach              180 sound/soc/intel/boards/skl_hda_dsp_generic.c 	ctx->platform_name = mach->mach_params.platform;
mach              652 sound/soc/intel/boards/skl_nau88l25_max98357a.c 	struct snd_soc_acpi_mach *mach;
mach              663 sound/soc/intel/boards/skl_nau88l25_max98357a.c 	mach = (&pdev->dev)->platform_data;
mach              664 sound/soc/intel/boards/skl_nau88l25_max98357a.c 	if (mach)
mach              665 sound/soc/intel/boards/skl_nau88l25_max98357a.c 		dmic_constraints = mach->mach_params.dmic_num == 2 ?
mach              695 sound/soc/intel/boards/skl_nau88l25_ssm4567.c 	struct snd_soc_acpi_mach *mach;
mach              706 sound/soc/intel/boards/skl_nau88l25_ssm4567.c 	mach = (&pdev->dev)->platform_data;
mach              707 sound/soc/intel/boards/skl_nau88l25_ssm4567.c 	if (mach)
mach              708 sound/soc/intel/boards/skl_nau88l25_ssm4567.c 		dmic_constraints = mach->mach_params.dmic_num == 2 ?
mach              583 sound/soc/intel/boards/sof_rt5682.c 	struct snd_soc_acpi_mach *mach;
mach              597 sound/soc/intel/boards/sof_rt5682.c 	mach = (&pdev->dev)->platform_data;
mach              602 sound/soc/intel/boards/sof_rt5682.c 	if ((sof_rt5682_quirk & SOF_SPEAKER_AMP_PRESENT) && !mach->quirk_data)
mach              668 sound/soc/intel/boards/sof_rt5682.c 						    mach->mach_params.platform);
mach               30 sound/soc/intel/common/soc-acpi-intel-bxt-match.c 	struct snd_soc_acpi_mach *mach = arg;
mach               41 sound/soc/intel/common/soc-acpi-intel-bxt-match.c 	return mach;
mach              108 sound/soc/intel/common/soc-acpi-intel-byt-match.c 	struct snd_soc_acpi_mach *mach = arg;
mach              119 sound/soc/intel/common/soc-acpi-intel-byt-match.c 		return mach;
mach               44 sound/soc/intel/common/soc-acpi-intel-cht-match.c 	struct snd_soc_acpi_mach *mach = arg;
mach               51 sound/soc/intel/common/soc-acpi-intel-cht-match.c 		return mach;
mach               44 sound/soc/intel/common/sst-acpi.c 	struct snd_soc_acpi_mach *mach;
mach               54 sound/soc/intel/common/sst-acpi.c 	struct snd_soc_acpi_mach *mach = sst_acpi->mach;
mach               58 sound/soc/intel/common/sst-acpi.c 		dev_err(dev, "Cannot load firmware %s\n", mach->fw_filename);
mach               80 sound/soc/intel/common/sst-acpi.c 	struct snd_soc_acpi_mach *mach;
mach               94 sound/soc/intel/common/sst-acpi.c 	mach = snd_soc_acpi_find_machine(desc->machines);
mach               95 sound/soc/intel/common/sst-acpi.c 	if (mach == NULL) {
mach              104 sound/soc/intel/common/sst-acpi.c 	sst_acpi->mach = mach;
mach              144 sound/soc/intel/common/sst-acpi.c 	mach->pdata = sst_pdata;
mach              148 sound/soc/intel/common/sst-acpi.c 		platform_device_register_data(dev, mach->drv_name, -1,
mach              149 sound/soc/intel/common/sst-acpi.c 					      mach, sizeof(*mach));
mach              154 sound/soc/intel/common/sst-acpi.c 	ret = request_firmware_nowait(THIS_MODULE, true, mach->fw_filename,
mach              484 sound/soc/intel/skylake/skl.c 	struct snd_soc_acpi_mach *mach;
mach              491 sound/soc/intel/skylake/skl.c 	mach = snd_soc_acpi_intel_hda_machines;
mach              494 sound/soc/intel/skylake/skl.c 	mach->fw_filename = machines->fw_filename;
mach              496 sound/soc/intel/skylake/skl.c 	return mach;
mach              502 sound/soc/intel/skylake/skl.c 	struct snd_soc_acpi_mach *mach = driver_data;
mach              505 sound/soc/intel/skylake/skl.c 	mach = snd_soc_acpi_find_machine(mach);
mach              506 sound/soc/intel/skylake/skl.c 	if (!mach) {
mach              508 sound/soc/intel/skylake/skl.c 		mach = skl_find_hda_machine(skl, driver_data);
mach              509 sound/soc/intel/skylake/skl.c 		if (!mach) {
mach              515 sound/soc/intel/skylake/skl.c 	skl->mach = mach;
mach              516 sound/soc/intel/skylake/skl.c 	skl->fw_name = mach->fw_filename;
mach              517 sound/soc/intel/skylake/skl.c 	pdata = mach->pdata;
mach              521 sound/soc/intel/skylake/skl.c 		mach->mach_params.dmic_num =
mach              531 sound/soc/intel/skylake/skl.c 	struct snd_soc_acpi_mach *mach = skl->mach;
mach              536 sound/soc/intel/skylake/skl.c 	pdev = platform_device_alloc(mach->drv_name, -1);
mach              542 sound/soc/intel/skylake/skl.c 	mach->mach_params.platform = dev_name(bus->dev);
mach              543 sound/soc/intel/skylake/skl.c 	mach->mach_params.codec_mask = bus->codec_mask;
mach              545 sound/soc/intel/skylake/skl.c 	ret = platform_device_add_data(pdev, (const void *)mach, sizeof(*mach));
mach               88 sound/soc/intel/skylake/skl.h 	struct snd_soc_acpi_mach *mach;
mach               14 sound/soc/soc-acpi.c 	struct snd_soc_acpi_mach *mach;
mach               17 sound/soc/soc-acpi.c 	for (mach = machines; mach->id[0]; mach++) {
mach               18 sound/soc/soc-acpi.c 		if (acpi_dev_present(mach->id, NULL, -1)) {
mach               19 sound/soc/soc-acpi.c 			if (mach->machine_quirk) {
mach               20 sound/soc/soc-acpi.c 				mach_alt = mach->machine_quirk(mach);
mach               23 sound/soc/soc-acpi.c 				mach = mach_alt;
mach               26 sound/soc/soc-acpi.c 			return mach;
mach               92 sound/soc/soc-acpi.c 	struct snd_soc_acpi_mach *mach = arg;
mach               94 sound/soc/soc-acpi.c 		(struct snd_soc_acpi_codecs *) mach->quirk_data;
mach               97 sound/soc/soc-acpi.c 	if (mach->quirk_data == NULL)
mach               98 sound/soc/soc-acpi.c 		return mach;
mach              105 sound/soc/soc-acpi.c 	return mach;
mach              335 sound/soc/sof/core.c 	const void *mach;
mach              422 sound/soc/sof/core.c 	mach = (const void *)plat_data->machine;
mach              428 sound/soc/sof/core.c 					      PLATFORM_DEVID_NONE, mach, size);
mach              352 sound/soc/sof/intel/hda.c 	struct snd_soc_acpi_mach *mach;
mach              421 sound/soc/sof/intel/hda.c 			mach = pdata->desc->machines;
mach              422 sound/soc/sof/intel/hda.c 			pdata->fw_filename = mach->sof_fw_filename;
mach               67 sound/soc/sof/nocodec.c 		      struct snd_soc_acpi_mach *mach,
mach               74 sound/soc/sof/nocodec.c 	if (!mach)
mach               79 sound/soc/sof/nocodec.c 	mach->drv_name = "sof-nocodec";
mach              134 sound/soc/sof/sof-acpi-dev.c 	struct snd_soc_acpi_mach *mach;
mach              164 sound/soc/sof/sof-acpi-dev.c 	mach = devm_kzalloc(dev, sizeof(*mach), GFP_KERNEL);
mach              165 sound/soc/sof/sof-acpi-dev.c 	if (!mach)
mach              167 sound/soc/sof/sof-acpi-dev.c 	ret = sof_nocodec_setup(dev, sof_pdata, mach, desc, ops);
mach              172 sound/soc/sof/sof-acpi-dev.c 	mach = snd_soc_acpi_find_machine(desc->machines);
mach              173 sound/soc/sof/sof-acpi-dev.c 	if (!mach) {
mach              176 sound/soc/sof/sof-acpi-dev.c 		sof_pdata->fw_filename = mach->sof_fw_filename;
mach              177 sound/soc/sof/sof-acpi-dev.c 		sof_pdata->tplg_filename = mach->sof_tplg_filename;
mach              181 sound/soc/sof/sof-acpi-dev.c 	if (mach) {
mach              182 sound/soc/sof/sof-acpi-dev.c 		mach->mach_params.platform = dev_name(dev);
mach              183 sound/soc/sof/sof-acpi-dev.c 		mach->mach_params.acpi_ipc_irq_index = desc->irqindex_host_ipc;
mach              186 sound/soc/sof/sof-acpi-dev.c 	sof_pdata->machine = mach;
mach               47 sound/soc/sof/sof-of-dev.c 	struct snd_soc_acpi_mach *mach;
mach               72 sound/soc/sof/sof-of-dev.c 	mach = devm_kzalloc(dev, sizeof(*mach), GFP_KERNEL);
mach               73 sound/soc/sof/sof-of-dev.c 	if (!mach)
mach               75 sound/soc/sof/sof-of-dev.c 	ret = sof_nocodec_setup(dev, sof_pdata, mach, desc, ops);
mach               83 sound/soc/sof/sof-of-dev.c 	if (mach)
mach               84 sound/soc/sof/sof-of-dev.c 		mach->mach_params.platform = dev_name(dev);
mach               86 sound/soc/sof/sof-of-dev.c 	sof_pdata->machine = mach;
mach              275 sound/soc/sof/sof-pci-dev.c 	struct snd_soc_acpi_mach *mach;
mach              304 sound/soc/sof/sof-pci-dev.c 	mach = devm_kzalloc(dev, sizeof(*mach), GFP_KERNEL);
mach              305 sound/soc/sof/sof-pci-dev.c 	if (!mach) {
mach              309 sound/soc/sof/sof-pci-dev.c 	ret = sof_nocodec_setup(dev, sof_pdata, mach, desc, ops);
mach              315 sound/soc/sof/sof-pci-dev.c 	mach = snd_soc_acpi_find_machine(desc->machines);
mach              316 sound/soc/sof/sof-pci-dev.c 	if (!mach) {
mach              319 sound/soc/sof/sof-pci-dev.c 		mach->mach_params.platform = dev_name(dev);
mach              320 sound/soc/sof/sof-pci-dev.c 		sof_pdata->fw_filename = mach->sof_fw_filename;
mach              321 sound/soc/sof/sof-pci-dev.c 		sof_pdata->tplg_filename = mach->sof_tplg_filename;
mach              326 sound/soc/sof/sof-pci-dev.c 	sof_pdata->machine = mach;
mach               69 tools/bpf/bpf_jit_disasm.c 	info.mach = bfd_get_mach(bfdf);
mach               78 tools/bpf/bpf_jit_disasm.c 				   info.mach,
mach              120 tools/bpf/bpftool/jit_disasm.c 	info.mach = bfd_get_mach(bfdf);
mach              131 tools/bpf/bpftool/jit_disasm.c 				   info.mach,
mach             1756 tools/perf/util/annotate.c 	info.mach = bfd_get_mach(bfdf);
mach             1788 tools/perf/util/annotate.c 				   info.mach,