cregit-Linux how code gets into the kernel

Release 4.7 sound/hda/local.h

Directory: sound/hda
/*
 * Local helper macros and functions for HD-audio core drivers
 */

#ifndef __HDAC_LOCAL_H

#define __HDAC_LOCAL_H


#define get_wcaps(codec, nid) \
	snd_hdac_read_parm(codec, nid, AC_PAR_AUDIO_WIDGET_CAP)

/* get the widget type from widget capability bits */

static inline int get_wcaps_type(unsigned int wcaps) { if (!wcaps) return -1; /* invalid type */ return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; }

Contributors

PersonTokensPropCommitsCommitProp
takashi iwaitakashi iwai30100.00%1100.00%
Total30100.00%1100.00%


static inline unsigned int get_wcaps_channels(u32 wcaps) { unsigned int chans; chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13; chans = (chans + 1) * 2; return chans; }

Contributors

PersonTokensPropCommitsCommitProp
subhransu s. prustysubhransu s. prusty38100.00%1100.00%
Total38100.00%1100.00%

extern const struct attribute_group *hdac_dev_attr_groups[]; int hda_widget_sysfs_init(struct hdac_device *codec); void hda_widget_sysfs_exit(struct hdac_device *codec); #endif /* __HDAC_LOCAL_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
takashi iwaitakashi iwai7766.96%266.67%
subhransu s. prustysubhransu s. prusty3833.04%133.33%
Total115100.00%3100.00%
Directory: sound/hda
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}