Lines Matching defs:info
902 knew.info = snd_emu10k1_gpr_ctl_info;
2457 struct snd_emu10k1_fx8010_info *info)
2463 info->internal_tram_size = emu->fx8010.itram_size;
2464 info->external_tram_size = emu->fx8010.etram_pages.bytes / 2;
2471 copy_string(info->fxbus_names[res], *fxbus, "FXBUS", res);
2472 copy_string(info->extin_names[res], extin_mask & (1 << res) ? *extin : NULL, "Unused", res);
2473 copy_string(info->extout_names[res], extout_mask & (1 << res) ? *extout : NULL, "Unused", res);
2476 copy_string(info->extout_names[res], extout_mask & (1 << res) ? *extout : NULL, "Unused", res);
2477 info->gpr_controls = emu->fx8010.gpr_count;
2483 struct snd_emu10k1_fx8010_info *info;
2495 info = kzalloc(sizeof(*info), GFP_KERNEL);
2496 if (!info)
2498 snd_emu10k1_fx8010_info(emu, info);
2499 if (copy_to_user(argp, info, sizeof(*info))) {
2500 kfree(info);
2503 kfree(info);