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 */
bmit' value='reload'/>
Diffstat
22 +0530
committerMark Brown <broonie@kernel.org>2016-04-21 17:09:03 +0100
commit09305da97c7808b900985526aa9198233f32fb37 (patch)
tree56abc364a09ec212b0553592d9b2ea5a0f686f4f
parent92eb4f62cbac0211e43ee4a6715ee2ea43167e88 (diff)
ASoC: Intel: Skylake: Use UUID in binary format
To avoid complex string manipulations with UUID in canonical form, use UUID in binary format. Signed-off-by: Shreyas NC <shreyas.nc@intel.com> Signed-off-by: Vinod Koul <vinod.koul@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat