summaryrefslogtreecommitdiff
path: root/oui.h
blob: 564e4a1e5c77e750839ed028660b40452a40c7d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OUI_H
#define OUI_H

extern const char *lookup_vendor(unsigned int id);
extern void dissector_init_oui(void);
extern void dissector_cleanup_oui(void);

static inline const char *lookup_vendor_str(unsigned int id)
{
	return lookup_vendor(id) ? : "Unknown";
}

#endif /* OUI_H */
>mode:
authorBard Liao <bardliao@realtek.com>2016-05-05 11:13:31 +0800
committerMark Brown <broonie@kernel.org>2016-05-05 13:06:39 +0100
commit381437dd0bd590902320b97e6512792b075becd4 (patch)
treec2fe8292b330121c4a52fa7822ed11b68b332d27 /Documentation
parent178ff7c6f3916aff3c3eaaec8636be3b41e93011 (diff)
ASoC: rt5645: polling jd status in all conditions
We only polling jd status when rt5645->pdata.jd_invert is true. However, it should be done at all time since there will be no interrupt for jd if we press a headset button and remove the headset at the same time. Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')