Lines Matching defs:info
19 #include <sound/info.h>
1807 struct snd_timer_info *info;
1818 info = kzalloc(sizeof(*info), GFP_KERNEL);
1819 if (! info)
1821 info->card = t->card ? t->card->number : -1;
1823 info->flags |= SNDRV_TIMER_FLG_SLAVE;
1824 strscpy(info->id, t->id, sizeof(info->id));
1825 strscpy(info->name, t->name, sizeof(info->name));
1827 info->resolution = snd_timer_hw_resolution(t);
1829 if (copy_to_user(_info, info, sizeof(*_info)))
1831 kfree(info);