#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 */ t.distanz.ch/cgit.cgi/linux/net-next.git/atom/?h=master' type='application/atom+xml'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alexander.deucher@amd.com>2016-07-07 15:01:42 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-07-07 15:01:42 -0400
commitb95e31fddabbc38f96c8e991dd7132cea252bf7d (patch)
tree493024925a553c9e66848759068a4e633ce45ace
parent4b7d97ac835ee96e46538a1fea38021988440301 (diff)
drm/amdgpu: move get_gpu_clock_counter into the gfx struct
It's gfx IP specific, not asic specific, so move to a gfx callback. Reviewed-by: Chunming Zhou <david1.zhou@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>