|
@@ -410,6 +410,16 @@ static inline u32 get_wcaps(struct hda_codec *codec, hda_nid_t nid)
|
|
|
/* get the widget type from widget capability bits */
|
|
|
#define get_wcaps_type(wcaps) (((wcaps) & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT)
|
|
|
|
|
|
+static inline unsigned int get_wcaps_channels(u32 wcaps)
|
|
|
+{
|
|
|
+ unsigned int chans;
|
|
|
+
|
|
|
+ chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
|
|
|
+ chans = ((chans << 1) | 1) + 1;
|
|
|
+
|
|
|
+ return chans;
|
|
|
+}
|
|
|
+
|
|
|
u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction);
|
|
|
int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
|
|
|
unsigned int caps);
|