Lines Matching refs:version
85 static int csp_detect(struct snd_sb *chip, int *version);
119 int uninitialized_var(version); in snd_sb_csp_new()
126 if (csp_detect(chip, &version)) in snd_sb_csp_new()
137 p->version = version; in snd_sb_csp_new()
148 sprintf(hw->name, "CSP v%d.%d", (version >> 4), (version & 0x0f)); in snd_sb_csp_new()
221 info.version = p->version; in snd_sb_csp_ioctl()
558 static int csp_detect(struct snd_sb *chip, int *version) in csp_detect() argument
582 *version = get_version(chip); in csp_detect()
584 if (*version >= 0x10 && *version <= 0x1f) in csp_detect()
611 if (p->version < 0x10 || p->version > 0x1f) { in snd_sb_csp_check_version()
612 snd_printd("%s: Invalid CSP version: 0x%x\n", __func__, p->version); in snd_sb_csp_check_version()
1140 …snd_iprintf(buffer, "Creative Signal Processor [v%d.%d]\n", (p->version >> 4), (p->version & 0x0f)… in info_read()