mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
20 lines
447 B
C
20 lines
447 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|
||
|
|
||
|
#endif /* __HDAC_LOCAL_H */
|