• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/

Lines Matching refs:ac97

366 /* ac97->scaps */
380 /* ac97->flags */
416 int (*build_3d) (struct snd_ac97 *ac97);
417 int (*build_specific) (struct snd_ac97 *ac97);
418 int (*build_spdif) (struct snd_ac97 *ac97);
419 int (*build_post_spdif) (struct snd_ac97 *ac97);
421 void (*suspend) (struct snd_ac97 *ac97);
422 void (*resume) (struct snd_ac97 *ac97);
424 void (*update_jacks) (struct snd_ac97 *ac97); /* for jack-sharing */
428 void (*reset) (struct snd_ac97 *ac97);
429 void (*warm_reset)(struct snd_ac97 *ac97);
430 void (*write) (struct snd_ac97 *ac97, unsigned short reg, unsigned short val);
431 unsigned short (*read) (struct snd_ac97 *ac97, unsigned short reg);
432 void (*wait) (struct snd_ac97 *ac97);
433 void (*init) (struct snd_ac97 *ac97);
464 void (*private_free) (struct snd_ac97 *ac97);
476 void (*private_free) (struct snd_ac97 *ac97);
524 static inline int ac97_is_audio(struct snd_ac97 * ac97)
526 return (ac97->scaps & AC97_SCAP_AUDIO);
528 static inline int ac97_is_modem(struct snd_ac97 * ac97)
530 return (ac97->scaps & AC97_SCAP_MODEM);
532 static inline int ac97_is_rev22(struct snd_ac97 * ac97)
534 return (ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_22;
536 static inline int ac97_can_amap(struct snd_ac97 * ac97)
538 return (ac97->ext_id & AC97_EI_AMAP) != 0;
540 static inline int ac97_can_spdif(struct snd_ac97 * ac97)
542 return (ac97->ext_id & AC97_EI_SPDIF) != 0;
552 const char *snd_ac97_get_short_name(struct snd_ac97 *ac97);
554 void snd_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
555 unsigned short snd_ac97_read(struct snd_ac97 *ac97, unsigned short reg);
556 void snd_ac97_write_cache(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
557 int snd_ac97_update(struct snd_ac97 *ac97, unsigned short reg, unsigned short value);
558 int snd_ac97_update_bits(struct snd_ac97 *ac97, unsigned short reg, unsigned short mask, unsigned short value);
560 int snd_ac97_update_power(struct snd_ac97 *ac97, int reg, int powerup);
562 static inline int snd_ac97_update_power(struct snd_ac97 *ac97, int reg,
569 void snd_ac97_suspend(struct snd_ac97 *ac97);
570 void snd_ac97_resume(struct snd_ac97 *ac97);
596 int snd_ac97_tune_hardware(struct snd_ac97 *ac97, struct ac97_quirk *quirk, const char *override);
597 int snd_ac97_set_rate(struct snd_ac97 *ac97, int reg, unsigned int rate);
630 int snd_ac97_pcm_assign(struct snd_ac97_bus *ac97,